Seurat running and integration

library(Seurat)
library(Matrix)
load("/data/proj/GCB_DvB/humanPublication/pubsplicedfull.Rdata")
load("/data/proj/GCB_DvB/humanPublication/pubunsplicedfull.Rdata")
load("/data/proj/GCB_DvB/humanPublication/networkAnnoFull.Rdata")
metadata <- networkAnnotableFile

Load original clustering

load("/data/proj/GCB_DvB/humanPublication/clusteringmanuscipt.Rdata")
annotationpaper <- networkAnnotableFile
annotationpaper$OriginalClustering <- networkAnnotableFile$seurat_clusters
library(viridis)
library(hues)
sidecols <- iwanthue(length(unique(annotationpaper$OriginalClustering)), 0, 360, 36, 180, 13, 73)
sidecols <- sidecols[as.factor(annotationpaper$OriginalClustering)]
annotationpaper$col <- sidecols
#color matching
colorscheme <- annotationpaper$col
for(i in 1:length(levels(annotationpaper$OriginalClustering))){
  #print(i)
  clsel <- levels(annotationpaper$seurat_clusters)[i]
  colordist <- as.data.frame(table(annotationpaper$col[annotationpaper$seurat_clusters %in% clsel]))
  coloruse <- colordist$Freq
  names(coloruse) <- colordist$Var1
  coloruse <- names(sort(coloruse,decreasing = TRUE))[1]
  colorscheme[which(annotationpaper$seurat_clusters %in% clsel)] <- coloruse
}
annotationpaper$col.translated <- colorscheme
library(plyr)
Level1  <- revalue(as.factor(annotationpaper$OriginalClustering), c(
  "26"="OPC",
  "15"="Glioblast",
  "7"="Glioblast",
  "8"="Glioblast",
  "25"="Glioblast",
  "27"="VLMC",
  "23"="NeuralProgenitor",
  "14"="NeuralProgenitor",
  "6"="NeuralProgenitor",
  "3"="NeuralProgenitor",
  "13"="NeuralProgenitor",
  "17"="NeuralProgenitor",
  "11"="RadialGlia",
  "1"="RadialGlia",
  "4"="RadialGlia",
  "21"="RadialGlia",
  "20"="RadialGlia",
  "18"="RadialGlia",
  "24"="RadialGlia",
  "12"="EarlyInhibitory",
  "5"="EarlyInhibitory",
  "22"="EarlyInhibitory",
  "19"="EarlyInhibitory",
  "2"="EarlyInhibitory",
  "10"="EarlyInhibitory",
  "28"="EarlyInhibitory",
  "9"="EarlyExcitatory",
  "16"="EarlyExcitatory",
  "0"="EarlyExcitatory",
  "29"="Unknown",
  "30"="Unknown",
  "31"="Unknown"
  ))
Level1 <- factor(Level1, levels= c(
  "OPC",
  "Glioblast",
  "RadialGlia",
  "NeuralProgenitor",
  "EarlyInhibitory",
  "EarlyExcitatory",
  "VLMC",
  "Unknown"))
levels(Level1)
[1] "OPC"              "Glioblast"        "RadialGlia"       "NeuralProgenitor" "EarlyInhibitory"  "EarlyExcitatory" 
[7] "VLMC"             "Unknown"         
c("OPC","Glioblast","RadialGlia","NeuralProgenitor","EarlyInhibitory","EarlyExcitatory","VLMC","29","30","31")     
 [1] "OPC"              "Glioblast"        "RadialGlia"       "NeuralProgenitor" "EarlyInhibitory"  "EarlyExcitatory" 
 [7] "VLMC"             "29"               "30"               "31"              
Level1colpal <- c("#E8C688","#D3AC9C","#B9CB6C","#738BC6","#D0D1BD","#DA8B6C","#E0C196","#C9B9A4","#C9B9A4","#C9B9A4") 
Level1col <- Level1colpal[as.factor(Level1)]

annotationpaper$Age <- annotationpaper$Sample
library(plyr)
annotationpaper$Age  <- revalue(as.factor(annotationpaper$Age), c(
  "hF_WK10_2017"="PCW 10",
  "hF_WK10psaNCAM_2017"="PCW 10",
  "hF_WK8_2017"="PCW 8",
  "hF_WK8.5cer.ctx_2019"="PCW 8.5",
  "hF_WK8.5fb_2019"="PCW 8.5",
  "hF_WK9_2019"="PCW 9"))
annotationpaper$Age <- factor(annotationpaper$Age, levels= c(
  "PCW 8",
  "PCW 8.5",
  "PCW 9",
  "PCW 10"))
#merge psaNCAM with non-psaNCAM
annotationpaper$Samples  <- revalue(as.factor(annotationpaper$Sample), c(
   "hF_WK10_2017"="hF_WK10V2",
  "hF_WK10psaNCAM_2017"="hF_WK10V2",
  "hF_WK8_2017"="hF_WK8V2",
  "hF_WK8.5cer.ctx_2019"="hF_WK8.5cer.ctxV3",
  "hF_WK8.5fb_2019"="hF_WK8.5fbV3",
  "hF_WK9_2019"="hF_WK9V3"))

annotationpaper$Level1 <- Level1
annotationpaper$Level1col <- Level1col
colorscheme <- annotationpaper$Level1col
for(i in 1:length(levels(annotationpaper$Level1))){
  #print(i)
  clsel <- levels(annotationpaper$seurat_clusters)[i]
  colordist <- as.data.frame(table(annotationpaper$Level1col[annotationpaper$seurat_clusters %in% clsel]))
  coloruse <- colordist$Freq
  names(coloruse) <- colordist$Var1
  coloruse <- names(sort(coloruse,decreasing = TRUE))[1]
  colorscheme[which(annotationpaper$seurat_clusters %in% clsel)] <- coloruse
}
annotationpaper$Level1col.translated <- colorscheme
colorscheme <- annotationpaper$Level1
for(i in 1:length(levels(annotationpaper$seurat_clusters))){
  #print(i)
  clsel <- levels(annotationpaper$seurat_clusters)[i]
  colordist <- as.data.frame(table(annotationpaper$Level1[annotationpaper$seurat_clusters %in% clsel]))
  coloruse <- colordist$Freq
  names(coloruse) <- colordist$Var1
  coloruse <- names(sort(coloruse,decreasing = TRUE))[1]
  colorscheme[which(annotationpaper$seurat_clusters %in% clsel)] <- coloruse
}
annotationpaper$Level1.translated <- colorscheme

Integrate the version 2 and version 3 data using Seurat CCA

library(Matrix)
# A list of cell cycle markers, from Tirosh et al, 2015, is loaded with Seurat.  We can
# segregate this list into markers of G2/M phase and markers of S phase
s.genes <- cc.genes$s.genes
g2m.genes <- cc.genes$g2m.genes
# Create our Seurat object and complete the initalization steps
hF <- CreateSeuratObject(counts = emats, project = "hFetal", meta.data = metadata)
#split the dataset into a list of two seurat objects
hF.list <- SplitObject(hF, split.by = "version")
hF.list <- lapply(X = hF.list, FUN = function(x) {
    x <- subset(x, subset = nFeature_RNA > 10)
    x <- NormalizeData(x)
    x <- FindVariableFeatures(x, selection.method = "vst", nfeatures = 10000)
})
Performing log-normalization
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Calculating gene variances
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Calculating feature variances of standardized and clipped values
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Performing log-normalization
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Calculating gene variances
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Calculating feature variances of standardized and clipped values
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
#select features that are repeatedly variable across datasets for integration
features <- SelectIntegrationFeatures(object.list = hF.list,nfeatures = 10000)
hF.anchors <- FindIntegrationAnchors(object.list = hF.list, anchor.features = features,reduction = "cca",dims = 1:30)
Scaling features for provided objects

  |                                                  | 0 % ~calculating  
  |+++++++++++++++++++++++++                         | 50% ~05s          
  |++++++++++++++++++++++++++++++++++++++++++++++++++| 100% elapsed=13s  
Finding all pairwise anchors

  |                                                  | 0 % ~calculating  
Running CCA
Merging objects
Finding neighborhoods
Finding anchors
    Found 23786 anchors
Filtering anchors
    Retained 16240 anchors

  |++++++++++++++++++++++++++++++++++++++++++++++++++| 100% elapsed=03m 12s
#this command creates an 'integrated' data assay
hF <- IntegrateData(anchorset = hF.anchors)
Merging dataset 1 into 2
Extracting anchors for merged samples
Finding integration vectors
Finding integration vector weights
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Integrating data
DefaultAssay(hF) <- "integrated"
hF@meta.data$seurat_clusters2 <- hF@meta.data$seurat_clusters
#hF <- NormalizeData(hF)
hF <- FindVariableFeatures(hF, selection.method = "vst",nfeatures = 10000)
Warning in FindVariableFeatures.Assay(object = assay.data, selection.method = selection.method,  :
  selection.method set to 'vst' but count slot is empty; will use data slot instead
Calculating gene variances
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Warning in eval(predvars, data, env) : NaNs produced
Warning in hvf.info$variance.expected[not.const] <- 10^fit$fitted :
  number of items to replace is not a multiple of replacement length
Calculating feature variances of standardized and clipped values
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
hF <- ScaleData(hF, features = VariableFeatures(hF))
Centering and scaling data matrix

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |===============================================================================================================| 100%
hF <- RunPCA(hF, features = VariableFeatures(hF), ndims.print = 1:5, nfeatures.print = 3)
PC_ 1 
Positive:  STMN2, MLLT11, RTN1 
Negative:  VIM, HMGB2, ZFP36L1 
PC_ 2 
Positive:  EDNRB, ATP1A2, BCAN 
Negative:  TOP2A, UBE2C, AURKB 
PC_ 3 
Positive:  NFIA, NEUROD6, NFIB 
Negative:  GAD2, PBX3, OTX2 
PC_ 4 
Positive:  RPS6, LINC01551, RPS20 
Negative:  TUBB4B, CCNB1, ARL6IP1 
PC_ 5 
Positive:  OTX2, RPS28, SOX14 
Negative:  MTCO3P12, H3-3A, SP9 
# view cell cycle scores and phase assignments
# Visualize the distribution of cell cycle markers across
hF <- RunUMAP(hF, dims=1:50,n.neighbors = 200,n.components = 2)
23:07:00 UMAP embedding parameters a = 0.9922 b = 1.112
23:07:00 Read 25161 rows and found 50 numeric columns
23:07:00 Using Annoy for neighbor search, n_neighbors = 200
23:07:00 Building Annoy index with metric = cosine, n_trees = 50
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
23:07:04 Writing NN index file to temp file /tmp/RtmpuZgNaP/file74eb68f0a325
23:07:04 Searching Annoy index using 1 thread, search_k = 20000
23:07:44 Annoy recall = 100%
23:07:46 Commencing smooth kNN distance calibration using 1 thread
23:07:55 Initializing from normalized Laplacian + noise
23:08:07 Commencing optimization for 200 epochs, with 5196278 positive edges
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
23:09:02 Optimization finished
hF <- CellCycleScoring(hF, s.features = s.genes, g2m.features = g2m.genes, set.ident = TRUE)
Warning: The following features are not present in the object: GINS2, MCM6, MLF1IP, RPA2, UBR7, MSH2, TIPIN, CASP8AP2, CLSPN, POLA1, not searching for symbol synonyms
Warning: The following features are not present in the object: FAM64A, HN1, KIF23, CTCF, CBX5, not searching for symbol synonyms
# hF@meta.data$seurat_clusters2 <- metadata$seurat_clusters
hF <- FindNeighbors(hF, dims = 1:50,k.param = 10)
Computing nearest neighbor graph
Computing SNN
hF <- FindClusters(hF, resolution = 1)
Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck

Number of nodes: 25161
Number of edges: 425121

Running Louvain algorithm...
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Maximum modularity in 10 random starts: 0.9342
Number of communities: 42
Elapsed time: 3 seconds
RidgePlot(hF, features = c("PCNA", "TOP2A", "MCM6", "MKI67"), ncol = 2)
Warning: Could not find MCM6 in the default search locations, found in RNA assay instead
Picking joint bandwidth of 0.128
Picking joint bandwidth of 0.0584
Picking joint bandwidth of 2.99e-06
Picking joint bandwidth of 0.0407

DimPlot(hF,label = TRUE,group.by = "Phase",split.by = "Sample",ncol=2)

DimPlot(hF,label = TRUE,group.by = "Sample",split.by = "version",ncol=2)

DimPlot(hF,label = TRUE,group.by = "version",shuffle = T)

DimPlot(hF,label = TRUE,group.by = "Sample",shuffle = T)

DimPlot(hF,label = TRUE,group.by = "seurat_clusters2")

DimPlot(hF,label = TRUE,group.by = "seurat_clusters")

Write csv to load in python and run scvelo for transition matrix

write.table(hF@assays$integrated@data,file = "/data/proj/GCB_DvB/humanPublication/pubsplicedcorrectedDM.csv",sep=",")
write.table(hF@meta.data,file = "/data/proj/GCB_DvB/humanPublication/pubannoDM.csv",sep=",")
#These are not needed
write.table(hF@reductions$umap@cell.embeddings,file = "/data/proj/GCB_DvB/humanPublication/umapscVeloDM.csv",sep=",")
ematu <- ematu[,colnames(emats)]
# row.names(emats) <- row.names(hF)
# row.names(ematu) <- row.names(hF)
write.table(emats[row.names(hF@assays$integrated@data),colnames(hF)],file = "/data/proj/GCB_DvB/humanPublication/pubsplicedFtruncDM.csv",sep=",")
write.table(ematu[row.names(hF@assays$integrated@data),colnames(hF)],file = "/data/proj/GCB_DvB/humanPublication/pubunsplicedFtruncDM.csv",sep=",")

After running scVELO in python we load the results back in.

library(Matrix)
library(Seurat)
#load("/data/proj/GCB_DvB/humanPublication/Step1vanBruggen5nnCCAFINAL2.Rdata")
load("/data/proj/GCB_DvB/humanPublication/pubsplicedfull.Rdata")
load("/data/proj/GCB_DvB/humanPublication/pubunsplicedfull.Rdata")
emats <- emats#[,dup.cells]
ematu <- ematu#[,dup.cells]
scVtm <- readMM('/data/proj/GCB_DvB/humanPublication/scVELOtransmatFSCCA30NNveloDM.mtx')
lt <- read.csv("/data/proj/GCB_DvB/humanPublication/scVELOLT_FSCCA30NNveloDM.csv")
#Optional read in transcription factor annotations from SCENIC
TFsSCENIC <- read.table(file="/data/proj/GCB_DvB/human/hFetal/motifs-v9-nr.hgnc-m0.001-o0.0.txt",sep="\t",stringsAsFactors = F)
TFs <- unique(TFsSCENIC$V6)

Now we create the diffusion map integrating both velocity and transcriptional distances into one manifold

set.seed(1234)
#First we create the diffusion map based on transcription
tsnerlba <- t(hF@reductions$pca@cell.embeddings[,1:50])
#get destiny, removed from bioconductor (not very useful >:())
# install.packages("remotes")
# remotes::install_github("https://github.com/theislab/destiny",build_vignettes = FALSE, dependencies = TRUE)
#check for duplicated cells 
# dup.cells <- !duplicated(t(tsnerlba))
# table(dup.cells)
# dup.cells <- as.logical(dup.cells)
# hF <- hF[,dup.cells]
# tsnerlba <- tsnerlba[,dup.cells]

library(destiny)
tsmanifolddist <- DiffusionMap(data =t(tsnerlba) ,n_eigs =20,verbose = TRUE)#,sigma=0.001) 
finding knns......done. Time: 186.81s
Calculating transition probabilities......done. Time: 0.38s

performing eigen decomposition......done. Time: 5.69s
colnames(tsmanifolddist@transitions) <- colnames(hF)
row.names(tsmanifolddist@transitions) <- colnames(hF)

#Now we create the joint representation
XY <- t(scVtm) %*% tsmanifolddist@transitions

#Now we integrate the spaces
library(irlba)
dcompl <- irlba(XY,50,maxit = 100000)
tsnerlba <- t(dcompl$u)
tsnerlba <- rbind(tsnerlba,t(dcompl$v))
library(destiny)
tsmanifold <- DiffusionMap(data =t(tsnerlba) ,n_eigs =20,verbose = TRUE)#,sigma=0.001) 
finding knns......done. Time: 149.84s
Calculating transition probabilities......done. Time: 0.31s

performing eigen decomposition......done. Time: 21.49s
colnames(tsmanifold@transitions) <- colnames(hF)
row.names(tsmanifold@transitions) <- colnames(hF)

#Now we generate the backward kernel 80% velocity 20% transcriptional distance
scVtmb <-  scVtm
scVtmb <- t(t(scVtmb)/Matrix::colSums(scVtmb,na.rm = TRUE))
scVtmb[is.na(scVtmb)] <- 0
kernel <- t((scVtm *0.8)) + (tsmanifold@transitions * 0.2)
kernel <- t(t(kernel)/Matrix::colSums(kernel,na.rm = TRUE))
kernel[is.na(kernel)] <- 0

Now we calculate the new clusters based on the new manifold

newclustobj <- Seurat::CreateSeuratObject(counts = as.matrix(hF@assays$RNA@data))
NetworkDist <- as.dist(1-tsmanifold@transitions)
newclustobj[["HSphere_snn"]] <- Seurat::FindNeighbors(NetworkDist,k.param=10)$snn
Building SNN based on a provided distance matrix
Computing SNN
Warning: Adding a Graph without an assay associated with it
newclustobj <- Seurat::FindClusters(newclustobj, graph.name = "HSphere_snn",resolution = 1.6) #algorithm = 4,
Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck

Number of nodes: 25161
Number of edges: 251057

Running Louvain algorithm...
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Maximum modularity in 10 random starts: 0.9369
Number of communities: 78
Elapsed time: 1 seconds
Warning: Adding a command log without an assay associated with it
table(newclustobj@meta.data$seurat_clusters)

  0   1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29 
899 873 696 666 570 558 543 531 524 523 516 506 504 498 493 491 478 465 459 442 439 417 414 403 398 387 375 372 368 361 
 30  31  32  33  34  35  36  37  38  39  40  41  42  43  44  45  46  47  48  49  50  51  52  53  54  55  56  57  58  59 
357 355 348 344 343 342 337 337 334 317 317 308 291 290 288 281 281 278 258 257 251 235 232 230 222 191 178 176 169 169 
 60  61  62  63  64  65  66  67  68  69  70  71  72  73  74  75  76  77 
159 154 147 145 138 122 116 115  84  80  74  74  72  65  58  34  29  10 
hF@meta.data$seurat_clusters3 <- newclustobj@meta.data$seurat_clusters
DimPlot(hF,label = TRUE,group.by = "seurat_clusters3")+ NoLegend()

Idents(hF) <- 'seurat_clusters3'
  DimPlot(hF, label=F, cells.highlight=WhichCells(hF, idents = "69"), cols.highlight = c("darkblue", "darkred"), cols= "grey")

  FeaturePlot(hF,features = c("APOD"),slot="data")

And we calculate the pseudotimes associated to each cluster

pt <- destiny::DPT(tsmanifold)#,tips = c(1,2))
cd_diffusionplot <- hF@meta.data
lineagecluster <- as.factor(hF$seurat_clusters3)
names(lineagecluster) <- row.names(cd_diffusionplot)
x<- pt$DPT1
names(x) <- row.names(cd_diffusionplot)
branchtips = as.character(NULL)#lowestcell
branchpseudotimes <- matrix(nrow=(length(levels(as.factor(lineagecluster)))),ncol=nrow(cd_diffusionplot))
lineagecluster <- lineagecluster[row.names(cd_diffusionplot)]
for(i in 1:length(levels(droplevels(as.factor(lineagecluster))))){
  pseudotime <- x[names(lineagecluster[lineagecluster %in% levels(lineagecluster)[i]])]
  topcell <- names(pseudotime[pseudotime == max(pseudotime)])
  branchtips <-  c(branchtips,topcell)
x <-pt[,which(row.names(cd_diffusionplot)==topcell,arr.ind = TRUE)]
names(x) <- row.names(cd_diffusionplot)
  branchpseudotimes[i,] <- x
  #print(i)
}
colnames(branchpseudotimes) <- row.names(cd_diffusionplot)
row.names(branchpseudotimes) <- levels(as.factor(lineagecluster))
branchpseudotimes <- branchpseudotimes[as.character(sort(as.integer(row.names(branchpseudotimes)),decreasing = F)),]

x <- hF@reductions$umap@cell.embeddings[,1]
  y <- hF@reductions$umap@cell.embeddings[,2]
  
load("/data/proj/GCB_DvB/humanPublication/umapharmony.Rdata")
  x <- umap_out_harmony2ddist$layout[,1]
  y <- umap_out_harmony2ddist$layout[,2]

Now we add tracks of lineage diffusion giving the start states of the diffusion process #this is the one to use

#library(e1071)
library(Matrix)
library(destiny)
startpt <- lt$latent_time
names(startpt) <- colnames(branchpseudotimes)
traceclusters <- matrix(ncol=nrow(branchpseudotimes),nrow=ncol(branchpseudotimes))
for(i in 1:nrow(branchpseudotimes)){
  #print(i)
log<- numeric()
starttime = "-1"
if(!starttime == row.names(branchpseudotimes)[i]){
source <- startpt
sink <- branchpseudotimes[i,]
sink <- sort(sink)
trackcellstart <- names(head(sink,10))
lineagecells <- trackcellstart
trackcell <- trackcellstart[1]
threshold <- source[trackcellstart[1]]
stall = 1
while(source[trackcell] > 0 & stall > 0 ) {
  logold <- log
  log<- c(log,source[trackcellstart])
  stall = length(log) - length(logold)
pool <- names(head(sink[sink > sink[trackcell]],1))
if(length(pool) < 1) {trackcell <- names(which(source == min(source)))}
else{
trackcellstart <- names(which(source[pool] <= min(log)))
lineagecells <- c(lineagecells,trackcellstart)
trackcell <- names(which(source[pool] == min(source[pool])))}
}
LineageCells <- lineagecells
Pathtrace <- names(lineagecluster) %in% c(unique(LineageCells))#,unique(LineageCells2))
}
else{Pathtrace <- logical(ncol(branchpseudotimes)) }
traceclusters[,i] <- Pathtrace
}

Here we start the diffusion process, first add the function

WAdiffuse <- function(A,dist,ncells,pool=FALSE,cores,distselectneighbor,nameselectneighbor){
  library(Matrix)
  library(foreach)
  library(doSNOW)
  library(matrixStats)
  range01 <- function(x){(x-min(x))/(max(x)-min(x))}
 cl <- makeCluster(cores)  
 registerDoSNOW(cl)  
iterations <- ncol(A)
pb <- txtProgressBar(max = iterations, style = 3)
progress <- function(n) setTxtProgressBar(pb, n)
opts <- list(progress = progress)
#distselectneighbor <- Matrix(apply(dist,2,function(x) sort(x,decreasing=FALSE)[1:ncells]),sparse = TRUE)
#nameselectneighbor <- apply(dist,2,function(x) sort(x,decreasing=FALSE,index.return=TRUE)$ix[1:ncells])
rm(dist)
gc()
if(class(A) != "dgCMatrix"){
A <- Matrix(as.matrix(A),sparse = T)
}
gc()
if(pool==FALSE){
D <-  foreach(i = 1:ncol(A),.combine=cbind,.packages=c("Matrix"),.options.snow = opts) %dopar% {
distsub <- 1-distselectneighbor[,i] #uses prob
C <- A[,nameselectneighbor[,i]]
C <- apply(C,1,function(x) weighted.mean(x,distsub))
return(C)
}
close(pb)
 stopCluster(cl)
}
if(pool==TRUE){
D <-  foreach(i = 1:ncol(A),.combine=cbind,.packages=c("Matrix"),.options.snow = opts) %dopar% {
distsub <- rowSums(A[,nameselectneighbor[,i]])
return(distsub)
}
close(pb)
 stopCluster(cl)
}
colnames(D) <- colnames(A)
row.names(D) <- row.names(A)
D <- Matrix(D,sparse=TRUE)
  gc()
 return(D)
}

Now we run the diffusion for 30 iterations with 100 neighbors, and calculate lineage membership and diffusion score

library(Matrix)
nameselectneighbor <- apply(kernel,2,function(x) sort(x,decreasing=TRUE,index.return=TRUE)$ix[1:100])
distselectneighbor <- Matrix(apply(kernel,2,function(x) sort(x,decreasing=TRUE)[1:100]),sparse = TRUE)

linwalk <- list()
linwalk[[1]] <- WAdiffuse(t(1*traceclusters),kernel,pool = FALSE,ncells=100,cores=8,distselectneighbor,nameselectneighbor)

  |                                                                                                                     
  |                                                                                                               |   0%
Warning in if (class(A) != "dgCMatrix") { :
  the condition has length > 1 and only the first element will be used

  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
for(i in 2:30){
  print(i)
linwalk[[i]] <- WAdiffuse(linwalk[[i-1]],kernel,pool = FALSE,ncells=100,cores=8,distselectneighbor,nameselectneighbor)
}
[1] 2

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 3

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 4

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 5

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 6

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 7

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 8

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 9

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 10

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 11

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 12

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 13

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 14

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 15

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 16

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 17

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 18

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 19

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 20

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 21

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 22

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 23

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 24

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 25

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 26

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 27

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 28

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 29

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
[1] 30

  |                                                                                                                     
  |                                                                                                               |   0%
  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
#save(linwalk,file="/data/proj/GCB_DvB/humanPublication/LinwalkFTRUECCAdiff30NNusingkernel.Rdata")
#load("/data/proj/GCB_DvB/humanPublication/LinwalkFTRUECCAdiff30NNusingkernel.Rdata")

#get lineages
for(j in 1:nrow(linwalk[[1]])){
  fpass <- linwalk[[1]][j,]
for(i in 2:30){
fpass <- cbind(fpass,linwalk[[i]][j,])
}
values <- apply(fpass,1,max)
if(j == 1){lineage = values} else{lineage <- rbind(lineage,values)}
}

Get lineage KL function

KLlin <- function(A,B,cores,skipgenes,limitcells,ncells,correct=FALSE,batch){
  print(correct)
  library(Matrix)
  library(foreach)
  library(doSNOW)
  range01 <- function(x){(x-min(x))/(max(x)-min(x))}
 cl <- makeCluster(cores)  
 registerDoSNOW(cl)  
iterations <- ncol(A)
pb <- txtProgressBar(max = iterations, style = 3)
progress <- function(n) setTxtProgressBar(pb, n)
opts <- list(progress = progress)
if(class(A) != "dgCMatrix"){
A <- Matrix(as.matrix(A),sparse = T)
 }
 if(class(B) != "dgCMatrix"){
B <- Matrix(as.matrix(A),sparse = T)
 }
if(min(A) < 0){
A <- A-min(A)
}
if(min(B) < 0){
B <- B-min(B)
}
rm(B)
gc()
D <-  foreach(i = 1:ncol(A),.combine=cbind,.packages="Matrix",.options.snow = opts) %dopar% {
D <- rep(NA, ncol(A))
if(skipgenes==TRUE){
avoidgene <- which(! (A[,i]<=0));C <- A[avoidgene,]}else{C <- A}
Ckl   <- t(t(C)/colSums(C))#[avoidgene,]
Ckl[is.na(Ckl)] <- 0
Ckl <- Matrix(Ckl+0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001,sparse=TRUE)
Ckl_log <- log(Ckl[,i]/Ckl[,-i])
C1kl <- Ckl[,i]*Ckl_log
rm(Ckl_log)
Ckl <- colSums(C1kl)

nnsort <- sort(Ckl,decreasing = FALSE)

if(limitcells==TRUE){
G <- t(C1kl[,names(nnsort)[1:ncells]]) / Ckl[names(nnsort)[1:ncells]];G <- (t(G) %*% Ckl[names(nnsort)[1:ncells]])[,1]}else{G <- t(C1kl) / Ckl;G <- (t(G) %*% Ckl)[,1]}

GD <- rep(NA, nrow(A))
usedG <- which(row.names(A) %in% names(G))
notusedG <- which(!row.names(A) %in% names(G))
GD[usedG] <- G
GD[notusedG] <- 0
names(GD) <- row.names(A)

C <- GD

gc()
return(C)
}
close(pb)
 stopCluster(cl)
 
colnames(D) <- colnames(A)
rownames(D) <- row.names(A)
Dnorm <- scale(abs(D), center=FALSE, scale=colSums(abs(D)))
Dnorm.sign <- scale(D, center=FALSE, scale=colSums(abs(D)))
D <- Matrix(D,sparse=TRUE)
Dnorm <- Matrix(Dnorm,sparse=TRUE)
Dnorm.sign <- Matrix(Dnorm.sign,sparse=TRUE)
D <- list(D,Dnorm,Dnorm.sign)
names(D) <- c("D","Dnorm","Dnorm.sign")
  #D <- D/sum(D)
  gc()
 return(D)
}

Run lineage membership estimation for each cell in the matrix

lineageKL <- lineage
lineageKLdone <- KLlin(lineage,lineage,15,skipgenes = FALSE,limitcells = FALSE,ncells = 100,correct = FALSE,batch = colnames(hF))
[1] FALSE

  |                                                                                                                     
  |                                                                                                               |   0%
Warning in if (class(A) != "dgCMatrix") { :
  the condition has length > 1 and only the first element will be used
Warning in if (class(B) != "dgCMatrix") { :
  the condition has length > 1 and only the first element will be used

  |                                                                                                                     
  |=                                                                                                              |   0%
  |                                                                                                                     
  |=                                                                                                              |   1%
  |                                                                                                                     
  |==                                                                                                             |   1%
  |                                                                                                                     
  |==                                                                                                             |   2%
  |                                                                                                                     
  |===                                                                                                            |   2%
  |                                                                                                                     
  |===                                                                                                            |   3%
  |                                                                                                                     
  |====                                                                                                           |   3%
  |                                                                                                                     
  |====                                                                                                           |   4%
  |                                                                                                                     
  |=====                                                                                                          |   4%
  |                                                                                                                     
  |=====                                                                                                          |   5%
  |                                                                                                                     
  |======                                                                                                         |   5%
  |                                                                                                                     
  |======                                                                                                         |   6%
  |                                                                                                                     
  |=======                                                                                                        |   6%
  |                                                                                                                     
  |=======                                                                                                        |   7%
  |                                                                                                                     
  |========                                                                                                       |   7%
  |                                                                                                                     
  |========                                                                                                       |   8%
  |                                                                                                                     
  |=========                                                                                                      |   8%
  |                                                                                                                     
  |=========                                                                                                      |   9%
  |                                                                                                                     
  |==========                                                                                                     |   9%
  |                                                                                                                     
  |===========                                                                                                    |   9%
  |                                                                                                                     
  |===========                                                                                                    |  10%
  |                                                                                                                     
  |============                                                                                                   |  10%
  |                                                                                                                     
  |============                                                                                                   |  11%
  |                                                                                                                     
  |=============                                                                                                  |  11%
  |                                                                                                                     
  |=============                                                                                                  |  12%
  |                                                                                                                     
  |==============                                                                                                 |  12%
  |                                                                                                                     
  |==============                                                                                                 |  13%
  |                                                                                                                     
  |===============                                                                                                |  13%
  |                                                                                                                     
  |===============                                                                                                |  14%
  |                                                                                                                     
  |================                                                                                               |  14%
  |                                                                                                                     
  |================                                                                                               |  15%
  |                                                                                                                     
  |=================                                                                                              |  15%
  |                                                                                                                     
  |=================                                                                                              |  16%
  |                                                                                                                     
  |==================                                                                                             |  16%
  |                                                                                                                     
  |==================                                                                                             |  17%
  |                                                                                                                     
  |===================                                                                                            |  17%
  |                                                                                                                     
  |===================                                                                                            |  18%
  |                                                                                                                     
  |====================                                                                                           |  18%
  |                                                                                                                     
  |=====================                                                                                          |  18%
  |                                                                                                                     
  |=====================                                                                                          |  19%
  |                                                                                                                     
  |======================                                                                                         |  19%
  |                                                                                                                     
  |======================                                                                                         |  20%
  |                                                                                                                     
  |=======================                                                                                        |  20%
  |                                                                                                                     
  |=======================                                                                                        |  21%
  |                                                                                                                     
  |========================                                                                                       |  21%
  |                                                                                                                     
  |========================                                                                                       |  22%
  |                                                                                                                     
  |=========================                                                                                      |  22%
  |                                                                                                                     
  |=========================                                                                                      |  23%
  |                                                                                                                     
  |==========================                                                                                     |  23%
  |                                                                                                                     
  |==========================                                                                                     |  24%
  |                                                                                                                     
  |===========================                                                                                    |  24%
  |                                                                                                                     
  |===========================                                                                                    |  25%
  |                                                                                                                     
  |============================                                                                                   |  25%
  |                                                                                                                     
  |============================                                                                                   |  26%
  |                                                                                                                     
  |=============================                                                                                  |  26%
  |                                                                                                                     
  |=============================                                                                                  |  27%
  |                                                                                                                     
  |==============================                                                                                 |  27%
  |                                                                                                                     
  |===============================                                                                                |  27%
  |                                                                                                                     
  |===============================                                                                                |  28%
  |                                                                                                                     
  |================================                                                                               |  28%
  |                                                                                                                     
  |================================                                                                               |  29%
  |                                                                                                                     
  |=================================                                                                              |  29%
  |                                                                                                                     
  |=================================                                                                              |  30%
  |                                                                                                                     
  |==================================                                                                             |  30%
  |                                                                                                                     
  |==================================                                                                             |  31%
  |                                                                                                                     
  |===================================                                                                            |  31%
  |                                                                                                                     
  |===================================                                                                            |  32%
  |                                                                                                                     
  |====================================                                                                           |  32%
  |                                                                                                                     
  |====================================                                                                           |  33%
  |                                                                                                                     
  |=====================================                                                                          |  33%
  |                                                                                                                     
  |=====================================                                                                          |  34%
  |                                                                                                                     
  |======================================                                                                         |  34%
  |                                                                                                                     
  |======================================                                                                         |  35%
  |                                                                                                                     
  |=======================================                                                                        |  35%
  |                                                                                                                     
  |=======================================                                                                        |  36%
  |                                                                                                                     
  |========================================                                                                       |  36%
  |                                                                                                                     
  |=========================================                                                                      |  36%
  |                                                                                                                     
  |=========================================                                                                      |  37%
  |                                                                                                                     
  |==========================================                                                                     |  37%
  |                                                                                                                     
  |==========================================                                                                     |  38%
  |                                                                                                                     
  |===========================================                                                                    |  38%
  |                                                                                                                     
  |===========================================                                                                    |  39%
  |                                                                                                                     
  |============================================                                                                   |  39%
  |                                                                                                                     
  |============================================                                                                   |  40%
  |                                                                                                                     
  |=============================================                                                                  |  40%
  |                                                                                                                     
  |=============================================                                                                  |  41%
  |                                                                                                                     
  |==============================================                                                                 |  41%
  |                                                                                                                     
  |==============================================                                                                 |  42%
  |                                                                                                                     
  |===============================================                                                                |  42%
  |                                                                                                                     
  |===============================================                                                                |  43%
  |                                                                                                                     
  |================================================                                                               |  43%
  |                                                                                                                     
  |================================================                                                               |  44%
  |                                                                                                                     
  |=================================================                                                              |  44%
  |                                                                                                                     
  |=================================================                                                              |  45%
  |                                                                                                                     
  |==================================================                                                             |  45%
  |                                                                                                                     
  |===================================================                                                            |  45%
  |                                                                                                                     
  |===================================================                                                            |  46%
  |                                                                                                                     
  |====================================================                                                           |  46%
  |                                                                                                                     
  |====================================================                                                           |  47%
  |                                                                                                                     
  |=====================================================                                                          |  47%
  |                                                                                                                     
  |=====================================================                                                          |  48%
  |                                                                                                                     
  |======================================================                                                         |  48%
  |                                                                                                                     
  |======================================================                                                         |  49%
  |                                                                                                                     
  |=======================================================                                                        |  49%
  |                                                                                                                     
  |=======================================================                                                        |  50%
  |                                                                                                                     
  |========================================================                                                       |  50%
  |                                                                                                                     
  |========================================================                                                       |  51%
  |                                                                                                                     
  |=========================================================                                                      |  51%
  |                                                                                                                     
  |=========================================================                                                      |  52%
  |                                                                                                                     
  |==========================================================                                                     |  52%
  |                                                                                                                     
  |==========================================================                                                     |  53%
  |                                                                                                                     
  |===========================================================                                                    |  53%
  |                                                                                                                     
  |===========================================================                                                    |  54%
  |                                                                                                                     
  |============================================================                                                   |  54%
  |                                                                                                                     
  |============================================================                                                   |  55%
  |                                                                                                                     
  |=============================================================                                                  |  55%
  |                                                                                                                     
  |==============================================================                                                 |  55%
  |                                                                                                                     
  |==============================================================                                                 |  56%
  |                                                                                                                     
  |===============================================================                                                |  56%
  |                                                                                                                     
  |===============================================================                                                |  57%
  |                                                                                                                     
  |================================================================                                               |  57%
  |                                                                                                                     
  |================================================================                                               |  58%
  |                                                                                                                     
  |=================================================================                                              |  58%
  |                                                                                                                     
  |=================================================================                                              |  59%
  |                                                                                                                     
  |==================================================================                                             |  59%
  |                                                                                                                     
  |==================================================================                                             |  60%
  |                                                                                                                     
  |===================================================================                                            |  60%
  |                                                                                                                     
  |===================================================================                                            |  61%
  |                                                                                                                     
  |====================================================================                                           |  61%
  |                                                                                                                     
  |====================================================================                                           |  62%
  |                                                                                                                     
  |=====================================================================                                          |  62%
  |                                                                                                                     
  |=====================================================================                                          |  63%
  |                                                                                                                     
  |======================================================================                                         |  63%
  |                                                                                                                     
  |======================================================================                                         |  64%
  |                                                                                                                     
  |=======================================================================                                        |  64%
  |                                                                                                                     
  |========================================================================                                       |  64%
  |                                                                                                                     
  |========================================================================                                       |  65%
  |                                                                                                                     
  |=========================================================================                                      |  65%
  |                                                                                                                     
  |=========================================================================                                      |  66%
  |                                                                                                                     
  |==========================================================================                                     |  66%
  |                                                                                                                     
  |==========================================================================                                     |  67%
  |                                                                                                                     
  |===========================================================================                                    |  67%
  |                                                                                                                     
  |===========================================================================                                    |  68%
  |                                                                                                                     
  |============================================================================                                   |  68%
  |                                                                                                                     
  |============================================================================                                   |  69%
  |                                                                                                                     
  |=============================================================================                                  |  69%
  |                                                                                                                     
  |=============================================================================                                  |  70%
  |                                                                                                                     
  |==============================================================================                                 |  70%
  |                                                                                                                     
  |==============================================================================                                 |  71%
  |                                                                                                                     
  |===============================================================================                                |  71%
  |                                                                                                                     
  |===============================================================================                                |  72%
  |                                                                                                                     
  |================================================================================                               |  72%
  |                                                                                                                     
  |================================================================================                               |  73%
  |                                                                                                                     
  |=================================================================================                              |  73%
  |                                                                                                                     
  |==================================================================================                             |  73%
  |                                                                                                                     
  |==================================================================================                             |  74%
  |                                                                                                                     
  |===================================================================================                            |  74%
  |                                                                                                                     
  |===================================================================================                            |  75%
  |                                                                                                                     
  |====================================================================================                           |  75%
  |                                                                                                                     
  |====================================================================================                           |  76%
  |                                                                                                                     
  |=====================================================================================                          |  76%
  |                                                                                                                     
  |=====================================================================================                          |  77%
  |                                                                                                                     
  |======================================================================================                         |  77%
  |                                                                                                                     
  |======================================================================================                         |  78%
  |                                                                                                                     
  |=======================================================================================                        |  78%
  |                                                                                                                     
  |=======================================================================================                        |  79%
  |                                                                                                                     
  |========================================================================================                       |  79%
  |                                                                                                                     
  |========================================================================================                       |  80%
  |                                                                                                                     
  |=========================================================================================                      |  80%
  |                                                                                                                     
  |=========================================================================================                      |  81%
  |                                                                                                                     
  |==========================================================================================                     |  81%
  |                                                                                                                     
  |==========================================================================================                     |  82%
  |                                                                                                                     
  |===========================================================================================                    |  82%
  |                                                                                                                     
  |============================================================================================                   |  82%
  |                                                                                                                     
  |============================================================================================                   |  83%
  |                                                                                                                     
  |=============================================================================================                  |  83%
  |                                                                                                                     
  |=============================================================================================                  |  84%
  |                                                                                                                     
  |==============================================================================================                 |  84%
  |                                                                                                                     
  |==============================================================================================                 |  85%
  |                                                                                                                     
  |===============================================================================================                |  85%
  |                                                                                                                     
  |===============================================================================================                |  86%
  |                                                                                                                     
  |================================================================================================               |  86%
  |                                                                                                                     
  |================================================================================================               |  87%
  |                                                                                                                     
  |=================================================================================================              |  87%
  |                                                                                                                     
  |=================================================================================================              |  88%
  |                                                                                                                     
  |==================================================================================================             |  88%
  |                                                                                                                     
  |==================================================================================================             |  89%
  |                                                                                                                     
  |===================================================================================================            |  89%
  |                                                                                                                     
  |===================================================================================================            |  90%
  |                                                                                                                     
  |====================================================================================================           |  90%
  |                                                                                                                     
  |====================================================================================================           |  91%
  |                                                                                                                     
  |=====================================================================================================          |  91%
  |                                                                                                                     
  |======================================================================================================         |  91%
  |                                                                                                                     
  |======================================================================================================         |  92%
  |                                                                                                                     
  |=======================================================================================================        |  92%
  |                                                                                                                     
  |=======================================================================================================        |  93%
  |                                                                                                                     
  |========================================================================================================       |  93%
  |                                                                                                                     
  |========================================================================================================       |  94%
  |                                                                                                                     
  |=========================================================================================================      |  94%
  |                                                                                                                     
  |=========================================================================================================      |  95%
  |                                                                                                                     
  |==========================================================================================================     |  95%
  |                                                                                                                     
  |==========================================================================================================     |  96%
  |                                                                                                                     
  |===========================================================================================================    |  96%
  |                                                                                                                     
  |===========================================================================================================    |  97%
  |                                                                                                                     
  |============================================================================================================   |  97%
  |                                                                                                                     
  |============================================================================================================   |  98%
  |                                                                                                                     
  |=============================================================================================================  |  98%
  |                                                                                                                     
  |=============================================================================================================  |  99%
  |                                                                                                                     
  |============================================================================================================== |  99%
  |                                                                                                                     
  |============================================================================================================== | 100%
  |                                                                                                                     
  |===============================================================================================================| 100%
#save(lineageKL,file="/data/proj/GCB_DvB/humanPublication/Final/lineagKLfinalrealCCA30NNvelokernel.Rdata")
#load("/data/proj/GCB_DvB/humanPublication/Final/lineagKLfinalrealCCA30NNvelokernel.Rdata")
lineage.mem <- lineageKLdone$Dnorm
lineage.mem.max <- (apply(lineage.mem,2,max))

Visualize lineage information

library(plotly)
library(dplyr)
#Differentiation score
plot_ly( x = ~x, y = ~y,marker = list(size = 5)) %>% add_markers(color=~lineage.mem.max,alpha=1)

#Plot OL lineage cluster 69 , row 70.
Expression_capped <- lineage.mem[70,]^0.1
Expression_capped <- scale(Expression_capped)
Expression_capped[Expression_capped <= 1.96]  <- 0
    names(Expression_capped) <- seq_len(length(Expression_capped))
    Expression_capped <- sort(Expression_capped,decreasing = FALSE)
    ord <- as.integer(names(Expression_capped))
    plot_ly( x = ~x[ord], y = ~y[ord],marker = list(size = 5)) %>% add_markers(color=~Expression_capped,alpha=1)%>% layout(
      xaxis = list( showgrid = FALSE,showaxis=FALSE,zeroline=FALSE),
      yaxis = list(showgrid = FALSE,showaxis=FALSE,zeroline=FALSE))
library(Matrix)
emat.norm <- hF@assays$RNA@data
#REMEMBER its PLUS1 for the clusters
lnum <- as.numeric(70)
Expression_capped <- lineage.mem[lnum,]^0.1
Expression_capped <- scale(Expression_capped)
#1.645 10% 1.96 5% 2.58 1%  
Expression_capped[Expression_capped <= 1.96]  <- 0
ptlin <- which(Expression_capped > 0)
length(ptlin)
[1] 1051
Lineagegenes <- row.names(hF@assays$integrated@data)
#Only TFs
#Lineagegenes <- Lineagegenes[Lineagegenes %in% TFs]
suppressWarnings(corlin <- apply(as.matrix(emat.norm[Lineagegenes,ptlin]),1,function(x) cor.test(x,lineage.mem[lnum,ptlin]^0.1,method="spearman")))
linKLdrivers <- as.data.frame(t(as.data.frame(lapply(corlin,unlist))))
linKLdrivers$p.value <- as.numeric(as.character(linKLdrivers$p.value))
linKLdrivers$estimate.rho <- as.numeric(as.character(linKLdrivers$estimate.rho))
#linKLdrivers$p.adjust <- p.adjust(linKLdrivers$p.value,method = "BH")
ldsig <- linKLdrivers$p.value;ldmaxcor <-linKLdrivers$estimate.rho
names(ldmaxcor) <- Lineagegenes
names(ldsig) <- Lineagegenes
lineagevals <- as.data.frame(cbind(ldsig,ldmaxcor))
lineagevals <- subset(lineagevals,lineagevals$ldsig < 0.05)
lvgenes <- lineagevals
Lineagegenes <- row.names(lineagevals[order(abs(lineagevals$ldmaxcor),decreasing = TRUE),])#[1:500]


linclusters <- as.data.frame(table(hF$seurat_clusters3[ptlin])/table(hF$seurat_clusters3))
linclusters <- as.character(linclusters[linclusters$Freq >0.1,]$Var1)
corclusters <- hF$seurat_clusters3#[ptlin]
 for(i in 1:length(linclusters)){
  if(i==1){cat("Correlating genes...binning by clusters...")}
  cat(paste("Bin Cluster ",linclusters[i],"..."))
  if(i!=1){linKLdriverssig <-cbind(linKLdriverssig,linKLdrivers$p.value);linKLdriverscor <-cbind(linKLdriverscor,linKLdrivers$estimate.cor)}
binlin  <- emat.norm[Lineagegenes,]
binlin  <- binlin[,corclusters %in% linclusters[i]]
cat(paste(length(which(corclusters %in% linclusters[i])),"cells..."))
  linbin <- lineage.mem[lnum,]^0.1
  linbin <- linbin[corclusters %in% linclusters[i]]
suppressWarnings(corlin <- apply(as.matrix(binlin),1,function(x) cor.test(x,linbin,method="pearson")))
linKLdrivers <- as.data.frame(t(as.data.frame(lapply(corlin,unlist))))
linKLdrivers$p.value <- as.numeric(as.character(linKLdrivers$p.value))
linKLdrivers$p.value <- p.adjust(linKLdrivers$p.value,method = "BH")
linKLdrivers$estimate.cor <- as.numeric(as.character(linKLdrivers$estimate.cor))
if(i!=1){linKLdriverssig <-cbind(linKLdriverssig,linKLdrivers$p.value)}
if(i==1){linKLdriverssig <- linKLdrivers$p.value;linKLdriverscor <-linKLdrivers$estimate.cor}
 }
Correlating genes...binning by clusters...Bin Cluster  6 ...543 cells...Bin Cluster  16 ...478 cells...Bin Cluster  24 ...398 cells...Bin Cluster  39 ...317 cells...Bin Cluster  49 ...257 cells...Bin Cluster  69 ...80 cells...Bin Cluster  73 ...65 cells...
row.names(linKLdriverscor) <- Lineagegenes
row.names(linKLdriverssig) <- Lineagegenes
ldmaxcor <- apply(linKLdriverscor,1,max,na.rm = TRUE)
ldmaxvar <- apply(linKLdriverscor,1,var,na.rm = TRUE)
names(ldmaxcor) <- Lineagegenes
names(ldmaxvar) <- Lineagegenes
ldsig <- apply(linKLdriverssig,1,min,na.rm = TRUE)
names(ldsig) <- Lineagegenes
lineagevals <- as.data.frame(cbind(ldsig,ldmaxcor,ldmaxvar))
lineagevals <- subset(lineagevals,lineagevals$ldsig < 0.05)
lvgenes <- lineagevals
EC <- lineage[lnum,ptlin]
names(EC) <- seq_len(length(EC))
EC <- sort(EC,decreasing = FALSE)
ord <- as.integer(names(EC))

if(nrow(lineagevals) <=100){ptgenes <- row.names(lineagevals)}else{ptgenes <- row.names(lineagevals[order(lineagevals$ldmaxcor,decreasing = TRUE),])[1:100]}

ctlin <- as.matrix(emat.norm[ptgenes,ptlin])
dat <- data.frame(t(ctlin[,ord]))
## response
vars <- colnames(dat)
## covariate
id <- 1:nrow(dat)
library(mgcv)
dat <- data.frame(t(ctlin[,ord]))
colnames(dat) <- gsub("-", "", colnames(dat))
ptgenesnum <- colnames(dat)
dat <- cbind(id,dat)

new.datp <- matrix(nrow=length(ptgenesnum),ncol=length(id))
new.datpval <- numeric(length=length(ptgenesnum))
for(i in 1:length(ptgenesnum)){
  form <- as.formula(paste0(ptgenesnum[i],"~",paste0("s(","id",',bs="cs",k=10',")",collapse="+")))
  m <- gam(form, data=dat)
  form <- as.formula(paste0(ptgenesnum[i],"~",paste0("1",collapse="+")))
  m0 <- gam(form, data=dat)
  new.datp[i,] <- m$fitted.values
}
row.names(new.datp) <- ptgenes
colnames(new.datp) <- colnames(ctlin[,ord])
new.datp[new.datp<0] <- 0
range01 <- function(x){(x-min(x))/(max(x)-min(x))}
new.datp <- t(apply(new.datp,1,range01))
new.dat <- new.datp#[fdr < 0.05,]

GC <- unlist(apply(new.dat,1,function(x) which(x == max(x))[1]))
names(GC) <- seq_len(length(GC))
GC <- sort(GC,decreasing = TRUE)
ordG <- as.integer(names(GC))

ctlin <- as.matrix(ematu[row.names(new.dat),ptlin])
dat <- data.frame(t(ctlin[,ord]))
vars <- colnames(dat)
id <- 1:nrow(dat)
library(mgcv)
dat <- data.frame(t(ctlin[,ord]))
colnames(dat) <- gsub("-", "", colnames(dat))
ptgenesnum <- colnames(dat)
dat <- cbind(id,dat)
new.datu <- matrix(nrow=length(ptgenesnum),ncol=length(id))
for(i in 1:length(ptgenesnum)){
  #print(i)
  form <- as.formula(paste0(ptgenesnum[i],"~",paste0("s(","id",',bs="cs",k=10',")",collapse="+")))
  new.datu[i,] <- gam(form, data=dat)$fitted.values
}
row.names(new.datu) <- row.names(new.dat)
colnames(new.datu) <- colnames(ctlin[,ord])
new.datu[new.datu<0] <- 0
range01 <- function(x){(x-min(x))/(max(x)-min(x))}
new.datu <- t(apply(new.datu,1,range01))
new.dat[new.dat<0] <- 0
new.datu <- new.dat[ordG,]-new.datu[ordG,]
filter <- apply(new.datu,1,anyNA)
new.datu <- new.datu[!filter,]
ordF <- ordG[!filter]
GC <- unlist(apply(new.datu,1,function(x) which(x == max(x))[1]))
names(GC) <- seq_len(length(GC))
GC <- sort(GC,decreasing = TRUE)
ordF <- as.integer(names(GC))


library(heatmap3)
library(pheatmap)
library(hues)
library(viridis)
sidecols <- iwanthue(length(unique(hF@meta.data$seurat_clusters3)),0, 360, 36, 180, 13, 73)
sidecols <- sidecols[as.factor(hF@meta.data$seurat_clusters3)][ptlin]
names(sidecols) <- seq_len(length(sidecols))
sidecols <- sidecols[ord]
heatmap3(new.dat[ordG,], Rowv = NA, Colv = NA ,scale = "none",symm = F, method = "ward.D2",col=viridis(1024),balanceColor =F,cexRow = 1.2,cexCol = 0.5,ColSideColors=sidecols,labCol = NA,)

heatmap3(new.datu[ordF,], Rowv = NA, Colv = NA ,scale = "none",symm = F, method = "ward.D2",balanceColor =F,cexRow = 1.4,cexCol = 0.5,ColSideColors=sidecols,labCol = NA)


save.image("/data/proj/GCB_DvB/humanPublication/Final/NBpart2.RData")
LS0tCnRpdGxlOiAiTGluZWFnZUluZmVyZW5jZSIKb3V0cHV0OiBodG1sX25vdGVib29rCi0tLQoKU2V1cmF0IHJ1bm5pbmcgYW5kIGludGVncmF0aW9uCmBgYHtyfQpsaWJyYXJ5KFNldXJhdCkKbGlicmFyeShNYXRyaXgpCmxvYWQoIi9kYXRhL3Byb2ovR0NCX0R2Qi9odW1hblB1YmxpY2F0aW9uL3B1YnNwbGljZWRmdWxsLlJkYXRhIikKbG9hZCgiL2RhdGEvcHJvai9HQ0JfRHZCL2h1bWFuUHVibGljYXRpb24vcHVidW5zcGxpY2VkZnVsbC5SZGF0YSIpCmxvYWQoIi9kYXRhL3Byb2ovR0NCX0R2Qi9odW1hblB1YmxpY2F0aW9uL25ldHdvcmtBbm5vRnVsbC5SZGF0YSIpCm1ldGFkYXRhIDwtIG5ldHdvcmtBbm5vdGFibGVGaWxlCmBgYApMb2FkIG9yaWdpbmFsIGNsdXN0ZXJpbmcKYGBge3J9CmxvYWQoIi9kYXRhL3Byb2ovR0NCX0R2Qi9odW1hblB1YmxpY2F0aW9uL2NsdXN0ZXJpbmdtYW51c2NpcHQuUmRhdGEiKQphbm5vdGF0aW9ucGFwZXIgPC0gbmV0d29ya0Fubm90YWJsZUZpbGUKYW5ub3RhdGlvbnBhcGVyJE9yaWdpbmFsQ2x1c3RlcmluZyA8LSBuZXR3b3JrQW5ub3RhYmxlRmlsZSRzZXVyYXRfY2x1c3RlcnMKbGlicmFyeSh2aXJpZGlzKQpsaWJyYXJ5KGh1ZXMpCnNpZGVjb2xzIDwtIGl3YW50aHVlKGxlbmd0aCh1bmlxdWUoYW5ub3RhdGlvbnBhcGVyJE9yaWdpbmFsQ2x1c3RlcmluZykpLCAwLCAzNjAsIDM2LCAxODAsIDEzLCA3MykKc2lkZWNvbHMgPC0gc2lkZWNvbHNbYXMuZmFjdG9yKGFubm90YXRpb25wYXBlciRPcmlnaW5hbENsdXN0ZXJpbmcpXQphbm5vdGF0aW9ucGFwZXIkY29sIDwtIHNpZGVjb2xzCiNjb2xvciBtYXRjaGluZwpjb2xvcnNjaGVtZSA8LSBhbm5vdGF0aW9ucGFwZXIkY29sCmZvcihpIGluIDE6bGVuZ3RoKGxldmVscyhhbm5vdGF0aW9ucGFwZXIkT3JpZ2luYWxDbHVzdGVyaW5nKSkpewogICNwcmludChpKQogIGNsc2VsIDwtIGxldmVscyhhbm5vdGF0aW9ucGFwZXIkc2V1cmF0X2NsdXN0ZXJzKVtpXQogIGNvbG9yZGlzdCA8LSBhcy5kYXRhLmZyYW1lKHRhYmxlKGFubm90YXRpb25wYXBlciRjb2xbYW5ub3RhdGlvbnBhcGVyJHNldXJhdF9jbHVzdGVycyAlaW4lIGNsc2VsXSkpCiAgY29sb3J1c2UgPC0gY29sb3JkaXN0JEZyZXEKICBuYW1lcyhjb2xvcnVzZSkgPC0gY29sb3JkaXN0JFZhcjEKICBjb2xvcnVzZSA8LSBuYW1lcyhzb3J0KGNvbG9ydXNlLGRlY3JlYXNpbmcgPSBUUlVFKSlbMV0KICBjb2xvcnNjaGVtZVt3aGljaChhbm5vdGF0aW9ucGFwZXIkc2V1cmF0X2NsdXN0ZXJzICVpbiUgY2xzZWwpXSA8LSBjb2xvcnVzZQp9CmFubm90YXRpb25wYXBlciRjb2wudHJhbnNsYXRlZCA8LSBjb2xvcnNjaGVtZQpsaWJyYXJ5KHBseXIpCkxldmVsMSAgPC0gcmV2YWx1ZShhcy5mYWN0b3IoYW5ub3RhdGlvbnBhcGVyJE9yaWdpbmFsQ2x1c3RlcmluZyksIGMoCiAgIjI2Ij0iT1BDIiwKICAiMTUiPSJHbGlvYmxhc3QiLAogICI3Ij0iR2xpb2JsYXN0IiwKICAiOCI9IkdsaW9ibGFzdCIsCiAgIjI1Ij0iR2xpb2JsYXN0IiwKICAiMjciPSJWTE1DIiwKICAiMjMiPSJOZXVyYWxQcm9nZW5pdG9yIiwKICAiMTQiPSJOZXVyYWxQcm9nZW5pdG9yIiwKICAiNiI9Ik5ldXJhbFByb2dlbml0b3IiLAogICIzIj0iTmV1cmFsUHJvZ2VuaXRvciIsCiAgIjEzIj0iTmV1cmFsUHJvZ2VuaXRvciIsCiAgIjE3Ij0iTmV1cmFsUHJvZ2VuaXRvciIsCiAgIjExIj0iUmFkaWFsR2xpYSIsCiAgIjEiPSJSYWRpYWxHbGlhIiwKICAiNCI9IlJhZGlhbEdsaWEiLAogICIyMSI9IlJhZGlhbEdsaWEiLAogICIyMCI9IlJhZGlhbEdsaWEiLAogICIxOCI9IlJhZGlhbEdsaWEiLAogICIyNCI9IlJhZGlhbEdsaWEiLAogICIxMiI9IkVhcmx5SW5oaWJpdG9yeSIsCiAgIjUiPSJFYXJseUluaGliaXRvcnkiLAogICIyMiI9IkVhcmx5SW5oaWJpdG9yeSIsCiAgIjE5Ij0iRWFybHlJbmhpYml0b3J5IiwKICAiMiI9IkVhcmx5SW5oaWJpdG9yeSIsCiAgIjEwIj0iRWFybHlJbmhpYml0b3J5IiwKICAiMjgiPSJFYXJseUluaGliaXRvcnkiLAogICI5Ij0iRWFybHlFeGNpdGF0b3J5IiwKICAiMTYiPSJFYXJseUV4Y2l0YXRvcnkiLAogICIwIj0iRWFybHlFeGNpdGF0b3J5IiwKICAiMjkiPSJVbmtub3duIiwKICAiMzAiPSJVbmtub3duIiwKICAiMzEiPSJVbmtub3duIgogICkpCkxldmVsMSA8LSBmYWN0b3IoTGV2ZWwxLCBsZXZlbHM9IGMoCiAgIk9QQyIsCiAgIkdsaW9ibGFzdCIsCiAgIlJhZGlhbEdsaWEiLAogICJOZXVyYWxQcm9nZW5pdG9yIiwKICAiRWFybHlJbmhpYml0b3J5IiwKICAiRWFybHlFeGNpdGF0b3J5IiwKICAiVkxNQyIsCiAgIlVua25vd24iKSkKbGV2ZWxzKExldmVsMSkKYygiT1BDIiwiR2xpb2JsYXN0IiwiUmFkaWFsR2xpYSIsIk5ldXJhbFByb2dlbml0b3IiLCJFYXJseUluaGliaXRvcnkiLCJFYXJseUV4Y2l0YXRvcnkiLCJWTE1DIiwiMjkiLCIzMCIsIjMxIikgICAgIApMZXZlbDFjb2xwYWwgPC0gYygiI0U4QzY4OCIsIiNEM0FDOUMiLCIjQjlDQjZDIiwiIzczOEJDNiIsIiNEMEQxQkQiLCIjREE4QjZDIiwiI0UwQzE5NiIsIiNDOUI5QTQiLCIjQzlCOUE0IiwiI0M5QjlBNCIpIApMZXZlbDFjb2wgPC0gTGV2ZWwxY29scGFsW2FzLmZhY3RvcihMZXZlbDEpXQoKYW5ub3RhdGlvbnBhcGVyJEFnZSA8LSBhbm5vdGF0aW9ucGFwZXIkU2FtcGxlCmxpYnJhcnkocGx5cikKYW5ub3RhdGlvbnBhcGVyJEFnZSAgPC0gcmV2YWx1ZShhcy5mYWN0b3IoYW5ub3RhdGlvbnBhcGVyJEFnZSksIGMoCiAgImhGX1dLMTBfMjAxNyI9IlBDVyAxMCIsCiAgImhGX1dLMTBwc2FOQ0FNXzIwMTciPSJQQ1cgMTAiLAogICJoRl9XSzhfMjAxNyI9IlBDVyA4IiwKICAiaEZfV0s4LjVjZXIuY3R4XzIwMTkiPSJQQ1cgOC41IiwKICAiaEZfV0s4LjVmYl8yMDE5Ij0iUENXIDguNSIsCiAgImhGX1dLOV8yMDE5Ij0iUENXIDkiKSkKYW5ub3RhdGlvbnBhcGVyJEFnZSA8LSBmYWN0b3IoYW5ub3RhdGlvbnBhcGVyJEFnZSwgbGV2ZWxzPSBjKAogICJQQ1cgOCIsCiAgIlBDVyA4LjUiLAogICJQQ1cgOSIsCiAgIlBDVyAxMCIpKQojbWVyZ2UgcHNhTkNBTSB3aXRoIG5vbi1wc2FOQ0FNCmFubm90YXRpb25wYXBlciRTYW1wbGVzICA8LSByZXZhbHVlKGFzLmZhY3Rvcihhbm5vdGF0aW9ucGFwZXIkU2FtcGxlKSwgYygKICAgImhGX1dLMTBfMjAxNyI9ImhGX1dLMTBWMiIsCiAgImhGX1dLMTBwc2FOQ0FNXzIwMTciPSJoRl9XSzEwVjIiLAogICJoRl9XSzhfMjAxNyI9ImhGX1dLOFYyIiwKICAiaEZfV0s4LjVjZXIuY3R4XzIwMTkiPSJoRl9XSzguNWNlci5jdHhWMyIsCiAgImhGX1dLOC41ZmJfMjAxOSI9ImhGX1dLOC41ZmJWMyIsCiAgImhGX1dLOV8yMDE5Ij0iaEZfV0s5VjMiKSkKCmFubm90YXRpb25wYXBlciRMZXZlbDEgPC0gTGV2ZWwxCmFubm90YXRpb25wYXBlciRMZXZlbDFjb2wgPC0gTGV2ZWwxY29sCmNvbG9yc2NoZW1lIDwtIGFubm90YXRpb25wYXBlciRMZXZlbDFjb2wKZm9yKGkgaW4gMTpsZW5ndGgobGV2ZWxzKGFubm90YXRpb25wYXBlciRMZXZlbDEpKSl7CiAgI3ByaW50KGkpCiAgY2xzZWwgPC0gbGV2ZWxzKGFubm90YXRpb25wYXBlciRzZXVyYXRfY2x1c3RlcnMpW2ldCiAgY29sb3JkaXN0IDwtIGFzLmRhdGEuZnJhbWUodGFibGUoYW5ub3RhdGlvbnBhcGVyJExldmVsMWNvbFthbm5vdGF0aW9ucGFwZXIkc2V1cmF0X2NsdXN0ZXJzICVpbiUgY2xzZWxdKSkKICBjb2xvcnVzZSA8LSBjb2xvcmRpc3QkRnJlcQogIG5hbWVzKGNvbG9ydXNlKSA8LSBjb2xvcmRpc3QkVmFyMQogIGNvbG9ydXNlIDwtIG5hbWVzKHNvcnQoY29sb3J1c2UsZGVjcmVhc2luZyA9IFRSVUUpKVsxXQogIGNvbG9yc2NoZW1lW3doaWNoKGFubm90YXRpb25wYXBlciRzZXVyYXRfY2x1c3RlcnMgJWluJSBjbHNlbCldIDwtIGNvbG9ydXNlCn0KYW5ub3RhdGlvbnBhcGVyJExldmVsMWNvbC50cmFuc2xhdGVkIDwtIGNvbG9yc2NoZW1lCmNvbG9yc2NoZW1lIDwtIGFubm90YXRpb25wYXBlciRMZXZlbDEKZm9yKGkgaW4gMTpsZW5ndGgobGV2ZWxzKGFubm90YXRpb25wYXBlciRzZXVyYXRfY2x1c3RlcnMpKSl7CiAgI3ByaW50KGkpCiAgY2xzZWwgPC0gbGV2ZWxzKGFubm90YXRpb25wYXBlciRzZXVyYXRfY2x1c3RlcnMpW2ldCiAgY29sb3JkaXN0IDwtIGFzLmRhdGEuZnJhbWUodGFibGUoYW5ub3RhdGlvbnBhcGVyJExldmVsMVthbm5vdGF0aW9ucGFwZXIkc2V1cmF0X2NsdXN0ZXJzICVpbiUgY2xzZWxdKSkKICBjb2xvcnVzZSA8LSBjb2xvcmRpc3QkRnJlcQogIG5hbWVzKGNvbG9ydXNlKSA8LSBjb2xvcmRpc3QkVmFyMQogIGNvbG9ydXNlIDwtIG5hbWVzKHNvcnQoY29sb3J1c2UsZGVjcmVhc2luZyA9IFRSVUUpKVsxXQogIGNvbG9yc2NoZW1lW3doaWNoKGFubm90YXRpb25wYXBlciRzZXVyYXRfY2x1c3RlcnMgJWluJSBjbHNlbCldIDwtIGNvbG9ydXNlCn0KYW5ub3RhdGlvbnBhcGVyJExldmVsMS50cmFuc2xhdGVkIDwtIGNvbG9yc2NoZW1lCgpgYGAKSW50ZWdyYXRlIHRoZSB2ZXJzaW9uIDIgYW5kIHZlcnNpb24gMyBkYXRhIHVzaW5nIFNldXJhdCBDQ0EKYGBge3J9CmxpYnJhcnkoTWF0cml4KQojIEEgbGlzdCBvZiBjZWxsIGN5Y2xlIG1hcmtlcnMsIGZyb20gVGlyb3NoIGV0IGFsLCAyMDE1LCBpcyBsb2FkZWQgd2l0aCBTZXVyYXQuICBXZSBjYW4KIyBzZWdyZWdhdGUgdGhpcyBsaXN0IGludG8gbWFya2VycyBvZiBHMi9NIHBoYXNlIGFuZCBtYXJrZXJzIG9mIFMgcGhhc2UKcy5nZW5lcyA8LSBjYy5nZW5lcyRzLmdlbmVzCmcybS5nZW5lcyA8LSBjYy5nZW5lcyRnMm0uZ2VuZXMKIyBDcmVhdGUgb3VyIFNldXJhdCBvYmplY3QgYW5kIGNvbXBsZXRlIHRoZSBpbml0YWxpemF0aW9uIHN0ZXBzCmhGIDwtIENyZWF0ZVNldXJhdE9iamVjdChjb3VudHMgPSBlbWF0cywgcHJvamVjdCA9ICJoRmV0YWwiLCBtZXRhLmRhdGEgPSBtZXRhZGF0YSkKI3NwbGl0IHRoZSBkYXRhc2V0IGludG8gYSBsaXN0IG9mIHR3byBzZXVyYXQgb2JqZWN0cwpoRi5saXN0IDwtIFNwbGl0T2JqZWN0KGhGLCBzcGxpdC5ieSA9ICJ2ZXJzaW9uIikKaEYubGlzdCA8LSBsYXBwbHkoWCA9IGhGLmxpc3QsIEZVTiA9IGZ1bmN0aW9uKHgpIHsKICAgIHggPC0gc3Vic2V0KHgsIHN1YnNldCA9IG5GZWF0dXJlX1JOQSA+IDEwKQogICAgeCA8LSBOb3JtYWxpemVEYXRhKHgpCiAgICB4IDwtIEZpbmRWYXJpYWJsZUZlYXR1cmVzKHgsIHNlbGVjdGlvbi5tZXRob2QgPSAidnN0IiwgbmZlYXR1cmVzID0gMTAwMDApCn0pCiNzZWxlY3QgZmVhdHVyZXMgdGhhdCBhcmUgcmVwZWF0ZWRseSB2YXJpYWJsZSBhY3Jvc3MgZGF0YXNldHMgZm9yIGludGVncmF0aW9uCmZlYXR1cmVzIDwtIFNlbGVjdEludGVncmF0aW9uRmVhdHVyZXMob2JqZWN0Lmxpc3QgPSBoRi5saXN0LG5mZWF0dXJlcyA9IDEwMDAwKQpoRi5hbmNob3JzIDwtIEZpbmRJbnRlZ3JhdGlvbkFuY2hvcnMob2JqZWN0Lmxpc3QgPSBoRi5saXN0LCBhbmNob3IuZmVhdHVyZXMgPSBmZWF0dXJlcyxyZWR1Y3Rpb24gPSAiY2NhIixkaW1zID0gMTozMCkKI3RoaXMgY29tbWFuZCBjcmVhdGVzIGFuICdpbnRlZ3JhdGVkJyBkYXRhIGFzc2F5CmhGIDwtIEludGVncmF0ZURhdGEoYW5jaG9yc2V0ID0gaEYuYW5jaG9ycykKRGVmYXVsdEFzc2F5KGhGKSA8LSAiaW50ZWdyYXRlZCIKaEZAbWV0YS5kYXRhJHNldXJhdF9jbHVzdGVyczIgPC0gaEZAbWV0YS5kYXRhJHNldXJhdF9jbHVzdGVycwojaEYgPC0gTm9ybWFsaXplRGF0YShoRikKaEYgPC0gRmluZFZhcmlhYmxlRmVhdHVyZXMoaEYsIHNlbGVjdGlvbi5tZXRob2QgPSAidnN0IixuZmVhdHVyZXMgPSAxMDAwMCkKaEYgPC0gU2NhbGVEYXRhKGhGLCBmZWF0dXJlcyA9IFZhcmlhYmxlRmVhdHVyZXMoaEYpKQpoRiA8LSBSdW5QQ0EoaEYsIGZlYXR1cmVzID0gVmFyaWFibGVGZWF0dXJlcyhoRiksIG5kaW1zLnByaW50ID0gMTo1LCBuZmVhdHVyZXMucHJpbnQgPSAzKQojIHZpZXcgY2VsbCBjeWNsZSBzY29yZXMgYW5kIHBoYXNlIGFzc2lnbm1lbnRzCiMgVmlzdWFsaXplIHRoZSBkaXN0cmlidXRpb24gb2YgY2VsbCBjeWNsZSBtYXJrZXJzIGFjcm9zcwpoRiA8LSBSdW5VTUFQKGhGLCBkaW1zPTE6NTAsbi5uZWlnaGJvcnMgPSAyMDAsbi5jb21wb25lbnRzID0gMikKaEYgPC0gQ2VsbEN5Y2xlU2NvcmluZyhoRiwgcy5mZWF0dXJlcyA9IHMuZ2VuZXMsIGcybS5mZWF0dXJlcyA9IGcybS5nZW5lcywgc2V0LmlkZW50ID0gVFJVRSkKIyBoRkBtZXRhLmRhdGEkc2V1cmF0X2NsdXN0ZXJzMiA8LSBtZXRhZGF0YSRzZXVyYXRfY2x1c3RlcnMKaEYgPC0gRmluZE5laWdoYm9ycyhoRiwgZGltcyA9IDE6NTAsay5wYXJhbSA9IDEwKQpoRiA8LSBGaW5kQ2x1c3RlcnMoaEYsIHJlc29sdXRpb24gPSAxKQpSaWRnZVBsb3QoaEYsIGZlYXR1cmVzID0gYygiUENOQSIsICJUT1AyQSIsICJNQ002IiwgIk1LSTY3IiksIG5jb2wgPSAyKQpEaW1QbG90KGhGLGxhYmVsID0gVFJVRSxncm91cC5ieSA9ICJQaGFzZSIsc3BsaXQuYnkgPSAiU2FtcGxlIixuY29sPTIpCkRpbVBsb3QoaEYsbGFiZWwgPSBUUlVFLGdyb3VwLmJ5ID0gIlNhbXBsZSIsc3BsaXQuYnkgPSAidmVyc2lvbiIsbmNvbD0yKQpEaW1QbG90KGhGLGxhYmVsID0gVFJVRSxncm91cC5ieSA9ICJ2ZXJzaW9uIixzaHVmZmxlID0gVCkKRGltUGxvdChoRixsYWJlbCA9IFRSVUUsZ3JvdXAuYnkgPSAiU2FtcGxlIixzaHVmZmxlID0gVCkKRGltUGxvdChoRixsYWJlbCA9IFRSVUUsZ3JvdXAuYnkgPSAic2V1cmF0X2NsdXN0ZXJzMiIpCkRpbVBsb3QoaEYsbGFiZWwgPSBUUlVFLGdyb3VwLmJ5ID0gInNldXJhdF9jbHVzdGVycyIpCmBgYApXcml0ZSBjc3YgdG8gbG9hZCBpbiBweXRob24gYW5kIHJ1biBzY3ZlbG8gZm9yIHRyYW5zaXRpb24gbWF0cml4CmBgYHtyfQp3cml0ZS50YWJsZShoRkBhc3NheXMkaW50ZWdyYXRlZEBkYXRhLGZpbGUgPSAiL2RhdGEvcHJvai9HQ0JfRHZCL2h1bWFuUHVibGljYXRpb24vcHVic3BsaWNlZGNvcnJlY3RlZERNLmNzdiIsc2VwPSIsIikKd3JpdGUudGFibGUoaEZAbWV0YS5kYXRhLGZpbGUgPSAiL2RhdGEvcHJvai9HQ0JfRHZCL2h1bWFuUHVibGljYXRpb24vcHViYW5ub0RNLmNzdiIsc2VwPSIsIikKI1RoZXNlIGFyZSBub3QgbmVlZGVkCndyaXRlLnRhYmxlKGhGQHJlZHVjdGlvbnMkdW1hcEBjZWxsLmVtYmVkZGluZ3MsZmlsZSA9ICIvZGF0YS9wcm9qL0dDQl9EdkIvaHVtYW5QdWJsaWNhdGlvbi91bWFwc2NWZWxvRE0uY3N2IixzZXA9IiwiKQplbWF0dSA8LSBlbWF0dVssY29sbmFtZXMoZW1hdHMpXQojIHJvdy5uYW1lcyhlbWF0cykgPC0gcm93Lm5hbWVzKGhGKQojIHJvdy5uYW1lcyhlbWF0dSkgPC0gcm93Lm5hbWVzKGhGKQp3cml0ZS50YWJsZShlbWF0c1tyb3cubmFtZXMoaEZAYXNzYXlzJGludGVncmF0ZWRAZGF0YSksY29sbmFtZXMoaEYpXSxmaWxlID0gIi9kYXRhL3Byb2ovR0NCX0R2Qi9odW1hblB1YmxpY2F0aW9uL3B1YnNwbGljZWRGdHJ1bmNETS5jc3YiLHNlcD0iLCIpCndyaXRlLnRhYmxlKGVtYXR1W3Jvdy5uYW1lcyhoRkBhc3NheXMkaW50ZWdyYXRlZEBkYXRhKSxjb2xuYW1lcyhoRildLGZpbGUgPSAiL2RhdGEvcHJvai9HQ0JfRHZCL2h1bWFuUHVibGljYXRpb24vcHVidW5zcGxpY2VkRnRydW5jRE0uY3N2IixzZXA9IiwiKQojbG9hZCgiL2RhdGEvcHJvai9HQ0JfRHZCL2h1bWFuUHVibGljYXRpb24vRmluYWwvTkJwYXJ0MS5SRGF0YSIpCmBgYApBZnRlciBydW5uaW5nIHNjVkVMTyBpbiBweXRob24gd2UgbG9hZCB0aGUgcmVzdWx0cyBiYWNrIGluLgpgYGB7cn0KbGlicmFyeShNYXRyaXgpCmxpYnJhcnkoU2V1cmF0KQojbG9hZCgiL2RhdGEvcHJvai9HQ0JfRHZCL2h1bWFuUHVibGljYXRpb24vU3RlcDF2YW5CcnVnZ2VuNW5uQ0NBRklOQUwyLlJkYXRhIikKbG9hZCgiL2RhdGEvcHJvai9HQ0JfRHZCL2h1bWFuUHVibGljYXRpb24vcHVic3BsaWNlZGZ1bGwuUmRhdGEiKQpsb2FkKCIvZGF0YS9wcm9qL0dDQl9EdkIvaHVtYW5QdWJsaWNhdGlvbi9wdWJ1bnNwbGljZWRmdWxsLlJkYXRhIikKZW1hdHMgPC0gZW1hdHMjWyxkdXAuY2VsbHNdCmVtYXR1IDwtIGVtYXR1I1ssZHVwLmNlbGxzXQpzY1Z0bSA8LSByZWFkTU0oJy9kYXRhL3Byb2ovR0NCX0R2Qi9odW1hblB1YmxpY2F0aW9uL3NjVkVMT3RyYW5zbWF0RlNDQ0EzME5OdmVsb0RNLm10eCcpCmx0IDwtIHJlYWQuY3N2KCIvZGF0YS9wcm9qL0dDQl9EdkIvaHVtYW5QdWJsaWNhdGlvbi9zY1ZFTE9MVF9GU0NDQTMwTk52ZWxvRE0uY3N2IikKI09wdGlvbmFsIHJlYWQgaW4gdHJhbnNjcmlwdGlvbiBmYWN0b3IgYW5ub3RhdGlvbnMgZnJvbSBTQ0VOSUMKVEZzU0NFTklDIDwtIHJlYWQudGFibGUoZmlsZT0iL2RhdGEvcHJvai9HQ0JfRHZCL2h1bWFuL2hGZXRhbC9tb3RpZnMtdjktbnIuaGduYy1tMC4wMDEtbzAuMC50eHQiLHNlcD0iXHQiLHN0cmluZ3NBc0ZhY3RvcnMgPSBGKQpURnMgPC0gdW5pcXVlKFRGc1NDRU5JQyRWNikKYGBgCk5vdyB3ZSBjcmVhdGUgdGhlIGRpZmZ1c2lvbiBtYXAgaW50ZWdyYXRpbmcgYm90aCB2ZWxvY2l0eSBhbmQgdHJhbnNjcmlwdGlvbmFsIGRpc3RhbmNlcyBpbnRvIG9uZSBtYW5pZm9sZApgYGB7cn0Kc2V0LnNlZWQoMTIzNCkKI0ZpcnN0IHdlIGNyZWF0ZSB0aGUgZGlmZnVzaW9uIG1hcCBiYXNlZCBvbiB0cmFuc2NyaXB0aW9uCnRzbmVybGJhIDwtIHQoaEZAcmVkdWN0aW9ucyRwY2FAY2VsbC5lbWJlZGRpbmdzWywxOjUwXSkKI2dldCBkZXN0aW55LCByZW1vdmVkIGZyb20gYmlvY29uZHVjdG9yIChub3QgdmVyeSB1c2VmdWwgPjooKSkKIyBpbnN0YWxsLnBhY2thZ2VzKCJyZW1vdGVzIikKIyByZW1vdGVzOjppbnN0YWxsX2dpdGh1YigiaHR0cHM6Ly9naXRodWIuY29tL3RoZWlzbGFiL2Rlc3RpbnkiLGJ1aWxkX3ZpZ25ldHRlcyA9IEZBTFNFLCBkZXBlbmRlbmNpZXMgPSBUUlVFKQojY2hlY2sgZm9yIGR1cGxpY2F0ZWQgY2VsbHMgCiMgZHVwLmNlbGxzIDwtICFkdXBsaWNhdGVkKHQodHNuZXJsYmEpKQojIHRhYmxlKGR1cC5jZWxscykKIyBkdXAuY2VsbHMgPC0gYXMubG9naWNhbChkdXAuY2VsbHMpCiMgaEYgPC0gaEZbLGR1cC5jZWxsc10KIyB0c25lcmxiYSA8LSB0c25lcmxiYVssZHVwLmNlbGxzXQoKbGlicmFyeShkZXN0aW55KQp0c21hbmlmb2xkZGlzdCA8LSBEaWZmdXNpb25NYXAoZGF0YSA9dCh0c25lcmxiYSkgLG5fZWlncyA9MjAsdmVyYm9zZSA9IFRSVUUpIyxzaWdtYT0wLjAwMSkgCmNvbG5hbWVzKHRzbWFuaWZvbGRkaXN0QHRyYW5zaXRpb25zKSA8LSBjb2xuYW1lcyhoRikKcm93Lm5hbWVzKHRzbWFuaWZvbGRkaXN0QHRyYW5zaXRpb25zKSA8LSBjb2xuYW1lcyhoRikKCiNOb3cgd2UgY3JlYXRlIHRoZSBqb2ludCByZXByZXNlbnRhdGlvbgpYWSA8LSB0KHNjVnRtKSAlKiUgdHNtYW5pZm9sZGRpc3RAdHJhbnNpdGlvbnMKCiNOb3cgd2UgaW50ZWdyYXRlIHRoZSBzcGFjZXMKbGlicmFyeShpcmxiYSkKZGNvbXBsIDwtIGlybGJhKFhZLDUwLG1heGl0ID0gMTAwMDAwKQp0c25lcmxiYSA8LSB0KGRjb21wbCR1KQp0c25lcmxiYSA8LSByYmluZCh0c25lcmxiYSx0KGRjb21wbCR2KSkKbGlicmFyeShkZXN0aW55KQp0c21hbmlmb2xkIDwtIERpZmZ1c2lvbk1hcChkYXRhID10KHRzbmVybGJhKSAsbl9laWdzID0yMCx2ZXJib3NlID0gVFJVRSkjLHNpZ21hPTAuMDAxKSAKY29sbmFtZXModHNtYW5pZm9sZEB0cmFuc2l0aW9ucykgPC0gY29sbmFtZXMoaEYpCnJvdy5uYW1lcyh0c21hbmlmb2xkQHRyYW5zaXRpb25zKSA8LSBjb2xuYW1lcyhoRikKCiNOb3cgd2UgZ2VuZXJhdGUgdGhlIGJhY2t3YXJkIGtlcm5lbCA4MCUgdmVsb2NpdHkgMjAlIHRyYW5zY3JpcHRpb25hbCBkaXN0YW5jZQpzY1Z0bWIgPC0gIHNjVnRtCnNjVnRtYiA8LSB0KHQoc2NWdG1iKS9NYXRyaXg6OmNvbFN1bXMoc2NWdG1iLG5hLnJtID0gVFJVRSkpCnNjVnRtYltpcy5uYShzY1Z0bWIpXSA8LSAwCmtlcm5lbCA8LSB0KChzY1Z0bSAqMC44KSkgKyAodHNtYW5pZm9sZEB0cmFuc2l0aW9ucyAqIDAuMikKa2VybmVsIDwtIHQodChrZXJuZWwpL01hdHJpeDo6Y29sU3VtcyhrZXJuZWwsbmEucm0gPSBUUlVFKSkKa2VybmVsW2lzLm5hKGtlcm5lbCldIDwtIDAKYGBgCk5vdyB3ZSBjYWxjdWxhdGUgdGhlIG5ldyBjbHVzdGVycyBiYXNlZCBvbiB0aGUgbmV3IG1hbmlmb2xkCmBgYHtyfQojIGxpYnJhcnkoU2V1cmF0KQojICNsaWJyYXJ5KGFtYXApCiM3NwpuZXdjbHVzdG9iaiA8LSBTZXVyYXQ6OkNyZWF0ZVNldXJhdE9iamVjdChjb3VudHMgPSBhcy5tYXRyaXgoaEZAYXNzYXlzJFJOQUBkYXRhKSkKTmV0d29ya0Rpc3QgPC0gYXMuZGlzdCgxLXRzbWFuaWZvbGRAdHJhbnNpdGlvbnMpCm5ld2NsdXN0b2JqW1siSFNwaGVyZV9zbm4iXV0gPC0gU2V1cmF0OjpGaW5kTmVpZ2hib3JzKE5ldHdvcmtEaXN0LGsucGFyYW09MTApJHNubgpuZXdjbHVzdG9iaiA8LSBTZXVyYXQ6OkZpbmRDbHVzdGVycyhuZXdjbHVzdG9iaiwgZ3JhcGgubmFtZSA9ICJIU3BoZXJlX3NubiIscmVzb2x1dGlvbiA9IDEuNikgI2FsZ29yaXRobSA9IDQsCnRhYmxlKG5ld2NsdXN0b2JqQG1ldGEuZGF0YSRzZXVyYXRfY2x1c3RlcnMpCmhGQG1ldGEuZGF0YSRzZXVyYXRfY2x1c3RlcnMzIDwtIG5ld2NsdXN0b2JqQG1ldGEuZGF0YSRzZXVyYXRfY2x1c3RlcnMKRGltUGxvdChoRixsYWJlbCA9IFRSVUUsZ3JvdXAuYnkgPSAic2V1cmF0X2NsdXN0ZXJzMyIpKyBOb0xlZ2VuZCgpCklkZW50cyhoRikgPC0gJ3NldXJhdF9jbHVzdGVyczMnCiAgRGltUGxvdChoRiwgbGFiZWw9RiwgY2VsbHMuaGlnaGxpZ2h0PVdoaWNoQ2VsbHMoaEYsIGlkZW50cyA9ICI2OSIpLCBjb2xzLmhpZ2hsaWdodCA9IGMoImRhcmtibHVlIiwgImRhcmtyZWQiKSwgY29scz0gImdyZXkiKQogIEZlYXR1cmVQbG90KGhGLGZlYXR1cmVzID0gYygiQVBPRCIpLHNsb3Q9ImRhdGEiKQpgYGAKCkFuZCB3ZSBjYWxjdWxhdGUgdGhlIHBzZXVkb3RpbWVzIGFzc29jaWF0ZWQgdG8gZWFjaCBjbHVzdGVyCmBgYHtyfQpwdCA8LSBkZXN0aW55OjpEUFQodHNtYW5pZm9sZCkjLHRpcHMgPSBjKDEsMikpCmNkX2RpZmZ1c2lvbnBsb3QgPC0gaEZAbWV0YS5kYXRhCmxpbmVhZ2VjbHVzdGVyIDwtIGFzLmZhY3RvcihoRiRzZXVyYXRfY2x1c3RlcnMzKQpuYW1lcyhsaW5lYWdlY2x1c3RlcikgPC0gcm93Lm5hbWVzKGNkX2RpZmZ1c2lvbnBsb3QpCng8LSBwdCREUFQxCm5hbWVzKHgpIDwtIHJvdy5uYW1lcyhjZF9kaWZmdXNpb25wbG90KQpicmFuY2h0aXBzID0gYXMuY2hhcmFjdGVyKE5VTEwpI2xvd2VzdGNlbGwKYnJhbmNocHNldWRvdGltZXMgPC0gbWF0cml4KG5yb3c9KGxlbmd0aChsZXZlbHMoYXMuZmFjdG9yKGxpbmVhZ2VjbHVzdGVyKSkpKSxuY29sPW5yb3coY2RfZGlmZnVzaW9ucGxvdCkpCmxpbmVhZ2VjbHVzdGVyIDwtIGxpbmVhZ2VjbHVzdGVyW3Jvdy5uYW1lcyhjZF9kaWZmdXNpb25wbG90KV0KZm9yKGkgaW4gMTpsZW5ndGgobGV2ZWxzKGRyb3BsZXZlbHMoYXMuZmFjdG9yKGxpbmVhZ2VjbHVzdGVyKSkpKSl7CiAgcHNldWRvdGltZSA8LSB4W25hbWVzKGxpbmVhZ2VjbHVzdGVyW2xpbmVhZ2VjbHVzdGVyICVpbiUgbGV2ZWxzKGxpbmVhZ2VjbHVzdGVyKVtpXV0pXQogIHRvcGNlbGwgPC0gbmFtZXMocHNldWRvdGltZVtwc2V1ZG90aW1lID09IG1heChwc2V1ZG90aW1lKV0pCiAgYnJhbmNodGlwcyA8LSAgYyhicmFuY2h0aXBzLHRvcGNlbGwpCnggPC1wdFssd2hpY2gocm93Lm5hbWVzKGNkX2RpZmZ1c2lvbnBsb3QpPT10b3BjZWxsLGFyci5pbmQgPSBUUlVFKV0KbmFtZXMoeCkgPC0gcm93Lm5hbWVzKGNkX2RpZmZ1c2lvbnBsb3QpCiAgYnJhbmNocHNldWRvdGltZXNbaSxdIDwtIHgKICAjcHJpbnQoaSkKfQpjb2xuYW1lcyhicmFuY2hwc2V1ZG90aW1lcykgPC0gcm93Lm5hbWVzKGNkX2RpZmZ1c2lvbnBsb3QpCnJvdy5uYW1lcyhicmFuY2hwc2V1ZG90aW1lcykgPC0gbGV2ZWxzKGFzLmZhY3RvcihsaW5lYWdlY2x1c3RlcikpCmJyYW5jaHBzZXVkb3RpbWVzIDwtIGJyYW5jaHBzZXVkb3RpbWVzW2FzLmNoYXJhY3Rlcihzb3J0KGFzLmludGVnZXIocm93Lm5hbWVzKGJyYW5jaHBzZXVkb3RpbWVzKSksZGVjcmVhc2luZyA9IEYpKSxdCgp4IDwtIGhGQHJlZHVjdGlvbnMkdW1hcEBjZWxsLmVtYmVkZGluZ3NbLDFdCiAgeSA8LSBoRkByZWR1Y3Rpb25zJHVtYXBAY2VsbC5lbWJlZGRpbmdzWywyXQogIApsb2FkKCIvZGF0YS9wcm9qL0dDQl9EdkIvaHVtYW5QdWJsaWNhdGlvbi91bWFwaGFybW9ueS5SZGF0YSIpCiAgeCA8LSB1bWFwX291dF9oYXJtb255MmRkaXN0JGxheW91dFssMV0KICB5IDwtIHVtYXBfb3V0X2hhcm1vbnkyZGRpc3QkbGF5b3V0WywyXQpgYGAKTm93IHdlIGFkZCB0cmFja3Mgb2YgbGluZWFnZSBkaWZmdXNpb24gZ2l2aW5nIHRoZSBzdGFydCBzdGF0ZXMgb2YgdGhlIGRpZmZ1c2lvbiBwcm9jZXNzICN0aGlzIGlzIHRoZSBvbmUgdG8gdXNlCmBgYHtyfQojbGlicmFyeShlMTA3MSkKbGlicmFyeShNYXRyaXgpCmxpYnJhcnkoZGVzdGlueSkKc3RhcnRwdCA8LSBsdCRsYXRlbnRfdGltZQpuYW1lcyhzdGFydHB0KSA8LSBjb2xuYW1lcyhicmFuY2hwc2V1ZG90aW1lcykKdHJhY2VjbHVzdGVycyA8LSBtYXRyaXgobmNvbD1ucm93KGJyYW5jaHBzZXVkb3RpbWVzKSxucm93PW5jb2woYnJhbmNocHNldWRvdGltZXMpKQpmb3IoaSBpbiAxOm5yb3coYnJhbmNocHNldWRvdGltZXMpKXsKICAjcHJpbnQoaSkKbG9nPC0gbnVtZXJpYygpCnN0YXJ0dGltZSA9ICItMSIKaWYoIXN0YXJ0dGltZSA9PSByb3cubmFtZXMoYnJhbmNocHNldWRvdGltZXMpW2ldKXsKc291cmNlIDwtIHN0YXJ0cHQKc2luayA8LSBicmFuY2hwc2V1ZG90aW1lc1tpLF0Kc2luayA8LSBzb3J0KHNpbmspCnRyYWNrY2VsbHN0YXJ0IDwtIG5hbWVzKGhlYWQoc2luaywxMCkpCmxpbmVhZ2VjZWxscyA8LSB0cmFja2NlbGxzdGFydAp0cmFja2NlbGwgPC0gdHJhY2tjZWxsc3RhcnRbMV0KdGhyZXNob2xkIDwtIHNvdXJjZVt0cmFja2NlbGxzdGFydFsxXV0Kc3RhbGwgPSAxCndoaWxlKHNvdXJjZVt0cmFja2NlbGxdID4gMCAmIHN0YWxsID4gMCApIHsKICBsb2dvbGQgPC0gbG9nCiAgbG9nPC0gYyhsb2csc291cmNlW3RyYWNrY2VsbHN0YXJ0XSkKICBzdGFsbCA9IGxlbmd0aChsb2cpIC0gbGVuZ3RoKGxvZ29sZCkKcG9vbCA8LSBuYW1lcyhoZWFkKHNpbmtbc2luayA+IHNpbmtbdHJhY2tjZWxsXV0sMSkpCmlmKGxlbmd0aChwb29sKSA8IDEpIHt0cmFja2NlbGwgPC0gbmFtZXMod2hpY2goc291cmNlID09IG1pbihzb3VyY2UpKSl9CmVsc2V7CnRyYWNrY2VsbHN0YXJ0IDwtIG5hbWVzKHdoaWNoKHNvdXJjZVtwb29sXSA8PSBtaW4obG9nKSkpCmxpbmVhZ2VjZWxscyA8LSBjKGxpbmVhZ2VjZWxscyx0cmFja2NlbGxzdGFydCkKdHJhY2tjZWxsIDwtIG5hbWVzKHdoaWNoKHNvdXJjZVtwb29sXSA9PSBtaW4oc291cmNlW3Bvb2xdKSkpfQp9CkxpbmVhZ2VDZWxscyA8LSBsaW5lYWdlY2VsbHMKUGF0aHRyYWNlIDwtIG5hbWVzKGxpbmVhZ2VjbHVzdGVyKSAlaW4lIGModW5pcXVlKExpbmVhZ2VDZWxscykpIyx1bmlxdWUoTGluZWFnZUNlbGxzMikpCn0KZWxzZXtQYXRodHJhY2UgPC0gbG9naWNhbChuY29sKGJyYW5jaHBzZXVkb3RpbWVzKSkgfQp0cmFjZWNsdXN0ZXJzWyxpXSA8LSBQYXRodHJhY2UKfQpgYGAKSGVyZSB3ZSBzdGFydCB0aGUgZGlmZnVzaW9uIHByb2Nlc3MsIGZpcnN0IGFkZCB0aGUgZnVuY3Rpb24KYGBge3J9CldBZGlmZnVzZSA8LSBmdW5jdGlvbihBLGRpc3QsbmNlbGxzLHBvb2w9RkFMU0UsY29yZXMsZGlzdHNlbGVjdG5laWdoYm9yLG5hbWVzZWxlY3RuZWlnaGJvcil7CiAgbGlicmFyeShNYXRyaXgpCiAgbGlicmFyeShmb3JlYWNoKQogIGxpYnJhcnkoZG9TTk9XKQogIGxpYnJhcnkobWF0cml4U3RhdHMpCiAgcmFuZ2UwMSA8LSBmdW5jdGlvbih4KXsoeC1taW4oeCkpLyhtYXgoeCktbWluKHgpKX0KIGNsIDwtIG1ha2VDbHVzdGVyKGNvcmVzKSAgCiByZWdpc3RlckRvU05PVyhjbCkgIAppdGVyYXRpb25zIDwtIG5jb2woQSkKcGIgPC0gdHh0UHJvZ3Jlc3NCYXIobWF4ID0gaXRlcmF0aW9ucywgc3R5bGUgPSAzKQpwcm9ncmVzcyA8LSBmdW5jdGlvbihuKSBzZXRUeHRQcm9ncmVzc0JhcihwYiwgbikKb3B0cyA8LSBsaXN0KHByb2dyZXNzID0gcHJvZ3Jlc3MpCiNkaXN0c2VsZWN0bmVpZ2hib3IgPC0gTWF0cml4KGFwcGx5KGRpc3QsMixmdW5jdGlvbih4KSBzb3J0KHgsZGVjcmVhc2luZz1GQUxTRSlbMTpuY2VsbHNdKSxzcGFyc2UgPSBUUlVFKQojbmFtZXNlbGVjdG5laWdoYm9yIDwtIGFwcGx5KGRpc3QsMixmdW5jdGlvbih4KSBzb3J0KHgsZGVjcmVhc2luZz1GQUxTRSxpbmRleC5yZXR1cm49VFJVRSkkaXhbMTpuY2VsbHNdKQpybShkaXN0KQpnYygpCmlmKGNsYXNzKEEpICE9ICJkZ0NNYXRyaXgiKXsKQSA8LSBNYXRyaXgoYXMubWF0cml4KEEpLHNwYXJzZSA9IFQpCn0KZ2MoKQppZihwb29sPT1GQUxTRSl7CkQgPC0gIGZvcmVhY2goaSA9IDE6bmNvbChBKSwuY29tYmluZT1jYmluZCwucGFja2FnZXM9YygiTWF0cml4IiksLm9wdGlvbnMuc25vdyA9IG9wdHMpICVkb3BhciUgewpkaXN0c3ViIDwtIDEtZGlzdHNlbGVjdG5laWdoYm9yWyxpXSAjdXNlcyBwcm9iCkMgPC0gQVssbmFtZXNlbGVjdG5laWdoYm9yWyxpXV0KQyA8LSBhcHBseShDLDEsZnVuY3Rpb24oeCkgd2VpZ2h0ZWQubWVhbih4LGRpc3RzdWIpKQpyZXR1cm4oQykKfQpjbG9zZShwYikKIHN0b3BDbHVzdGVyKGNsKQp9CmlmKHBvb2w9PVRSVUUpewpEIDwtICBmb3JlYWNoKGkgPSAxOm5jb2woQSksLmNvbWJpbmU9Y2JpbmQsLnBhY2thZ2VzPWMoIk1hdHJpeCIpLC5vcHRpb25zLnNub3cgPSBvcHRzKSAlZG9wYXIlIHsKZGlzdHN1YiA8LSByb3dTdW1zKEFbLG5hbWVzZWxlY3RuZWlnaGJvclssaV1dKQpyZXR1cm4oZGlzdHN1YikKfQpjbG9zZShwYikKIHN0b3BDbHVzdGVyKGNsKQp9CmNvbG5hbWVzKEQpIDwtIGNvbG5hbWVzKEEpCnJvdy5uYW1lcyhEKSA8LSByb3cubmFtZXMoQSkKRCA8LSBNYXRyaXgoRCxzcGFyc2U9VFJVRSkKICBnYygpCiByZXR1cm4oRCkKfQpgYGAKTm93IHdlIHJ1biB0aGUgZGlmZnVzaW9uIGZvciAzMCBpdGVyYXRpb25zIHdpdGggMTAwIG5laWdoYm9ycywgYW5kIGNhbGN1bGF0ZSBsaW5lYWdlIG1lbWJlcnNoaXAgYW5kIGRpZmZ1c2lvbiBzY29yZQoKYGBge3J9CmxpYnJhcnkoTWF0cml4KQpuYW1lc2VsZWN0bmVpZ2hib3IgPC0gYXBwbHkoa2VybmVsLDIsZnVuY3Rpb24oeCkgc29ydCh4LGRlY3JlYXNpbmc9VFJVRSxpbmRleC5yZXR1cm49VFJVRSkkaXhbMToxMDBdKQpkaXN0c2VsZWN0bmVpZ2hib3IgPC0gTWF0cml4KGFwcGx5KGtlcm5lbCwyLGZ1bmN0aW9uKHgpIHNvcnQoeCxkZWNyZWFzaW5nPVRSVUUpWzE6MTAwXSksc3BhcnNlID0gVFJVRSkKCmxpbndhbGsgPC0gbGlzdCgpCmxpbndhbGtbWzFdXSA8LSBXQWRpZmZ1c2UodCgxKnRyYWNlY2x1c3RlcnMpLGtlcm5lbCxwb29sID0gRkFMU0UsbmNlbGxzPTEwMCxjb3Jlcz04LGRpc3RzZWxlY3RuZWlnaGJvcixuYW1lc2VsZWN0bmVpZ2hib3IpCmZvcihpIGluIDI6MzApewogIHByaW50KGkpCmxpbndhbGtbW2ldXSA8LSBXQWRpZmZ1c2UobGlud2Fsa1tbaS0xXV0sa2VybmVsLHBvb2wgPSBGQUxTRSxuY2VsbHM9MTAwLGNvcmVzPTgsZGlzdHNlbGVjdG5laWdoYm9yLG5hbWVzZWxlY3RuZWlnaGJvcikKfQoKI3NhdmUobGlud2FsayxmaWxlPSIvZGF0YS9wcm9qL0dDQl9EdkIvaHVtYW5QdWJsaWNhdGlvbi9MaW53YWxrRlRSVUVDQ0FkaWZmMzBOTnVzaW5na2VybmVsLlJkYXRhIikKI2xvYWQoIi9kYXRhL3Byb2ovR0NCX0R2Qi9odW1hblB1YmxpY2F0aW9uL0xpbndhbGtGVFJVRUNDQWRpZmYzME5OdXNpbmdrZXJuZWwuUmRhdGEiKQoKI2dldCBsaW5lYWdlcwpmb3IoaiBpbiAxOm5yb3cobGlud2Fsa1tbMV1dKSl7CiAgZnBhc3MgPC0gbGlud2Fsa1tbMV1dW2osXQpmb3IoaSBpbiAyOjMwKXsKZnBhc3MgPC0gY2JpbmQoZnBhc3MsbGlud2Fsa1tbaV1dW2osXSkKfQp2YWx1ZXMgPC0gYXBwbHkoZnBhc3MsMSxtYXgpCmlmKGogPT0gMSl7bGluZWFnZSA9IHZhbHVlc30gZWxzZXtsaW5lYWdlIDwtIHJiaW5kKGxpbmVhZ2UsdmFsdWVzKX0KfQpgYGAKR2V0IGxpbmVhZ2UgS0wgZnVuY3Rpb24KYGBge3J9CktMbGluIDwtIGZ1bmN0aW9uKEEsQixjb3Jlcyxza2lwZ2VuZXMsbGltaXRjZWxscyxuY2VsbHMsY29ycmVjdD1GQUxTRSxiYXRjaCl7CiAgcHJpbnQoY29ycmVjdCkKICBsaWJyYXJ5KE1hdHJpeCkKICBsaWJyYXJ5KGZvcmVhY2gpCiAgbGlicmFyeShkb1NOT1cpCiAgcmFuZ2UwMSA8LSBmdW5jdGlvbih4KXsoeC1taW4oeCkpLyhtYXgoeCktbWluKHgpKX0KIGNsIDwtIG1ha2VDbHVzdGVyKGNvcmVzKSAgCiByZWdpc3RlckRvU05PVyhjbCkgIAppdGVyYXRpb25zIDwtIG5jb2woQSkKcGIgPC0gdHh0UHJvZ3Jlc3NCYXIobWF4ID0gaXRlcmF0aW9ucywgc3R5bGUgPSAzKQpwcm9ncmVzcyA8LSBmdW5jdGlvbihuKSBzZXRUeHRQcm9ncmVzc0JhcihwYiwgbikKb3B0cyA8LSBsaXN0KHByb2dyZXNzID0gcHJvZ3Jlc3MpCmlmKGNsYXNzKEEpICE9ICJkZ0NNYXRyaXgiKXsKQSA8LSBNYXRyaXgoYXMubWF0cml4KEEpLHNwYXJzZSA9IFQpCiB9CiBpZihjbGFzcyhCKSAhPSAiZGdDTWF0cml4Iil7CkIgPC0gTWF0cml4KGFzLm1hdHJpeChBKSxzcGFyc2UgPSBUKQogfQppZihtaW4oQSkgPCAwKXsKQSA8LSBBLW1pbihBKQp9CmlmKG1pbihCKSA8IDApewpCIDwtIEItbWluKEIpCn0Kcm0oQikKZ2MoKQpEIDwtICBmb3JlYWNoKGkgPSAxOm5jb2woQSksLmNvbWJpbmU9Y2JpbmQsLnBhY2thZ2VzPSJNYXRyaXgiLC5vcHRpb25zLnNub3cgPSBvcHRzKSAlZG9wYXIlIHsKRCA8LSByZXAoTkEsIG5jb2woQSkpCmlmKHNraXBnZW5lcz09VFJVRSl7CmF2b2lkZ2VuZSA8LSB3aGljaCghIChBWyxpXTw9MCkpO0MgPC0gQVthdm9pZGdlbmUsXX1lbHNle0MgPC0gQX0KQ2tsICAgPC0gdCh0KEMpL2NvbFN1bXMoQykpI1thdm9pZGdlbmUsXQpDa2xbaXMubmEoQ2tsKV0gPC0gMApDa2wgPC0gTWF0cml4KENrbCswLjAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDEsc3BhcnNlPVRSVUUpCkNrbF9sb2cgPC0gbG9nKENrbFssaV0vQ2tsWywtaV0pCkMxa2wgPC0gQ2tsWyxpXSpDa2xfbG9nCnJtKENrbF9sb2cpCkNrbCA8LSBjb2xTdW1zKEMxa2wpCgpubnNvcnQgPC0gc29ydChDa2wsZGVjcmVhc2luZyA9IEZBTFNFKQoKaWYobGltaXRjZWxscz09VFJVRSl7CkcgPC0gdChDMWtsWyxuYW1lcyhubnNvcnQpWzE6bmNlbGxzXV0pIC8gQ2tsW25hbWVzKG5uc29ydClbMTpuY2VsbHNdXTtHIDwtICh0KEcpICUqJSBDa2xbbmFtZXMobm5zb3J0KVsxOm5jZWxsc11dKVssMV19ZWxzZXtHIDwtIHQoQzFrbCkgLyBDa2w7RyA8LSAodChHKSAlKiUgQ2tsKVssMV19CgpHRCA8LSByZXAoTkEsIG5yb3coQSkpCnVzZWRHIDwtIHdoaWNoKHJvdy5uYW1lcyhBKSAlaW4lIG5hbWVzKEcpKQpub3R1c2VkRyA8LSB3aGljaCghcm93Lm5hbWVzKEEpICVpbiUgbmFtZXMoRykpCkdEW3VzZWRHXSA8LSBHCkdEW25vdHVzZWRHXSA8LSAwCm5hbWVzKEdEKSA8LSByb3cubmFtZXMoQSkKCkMgPC0gR0QKCmdjKCkKcmV0dXJuKEMpCn0KY2xvc2UocGIpCiBzdG9wQ2x1c3RlcihjbCkKIApjb2xuYW1lcyhEKSA8LSBjb2xuYW1lcyhBKQpyb3duYW1lcyhEKSA8LSByb3cubmFtZXMoQSkKRG5vcm0gPC0gc2NhbGUoYWJzKEQpLCBjZW50ZXI9RkFMU0UsIHNjYWxlPWNvbFN1bXMoYWJzKEQpKSkKRG5vcm0uc2lnbiA8LSBzY2FsZShELCBjZW50ZXI9RkFMU0UsIHNjYWxlPWNvbFN1bXMoYWJzKEQpKSkKRCA8LSBNYXRyaXgoRCxzcGFyc2U9VFJVRSkKRG5vcm0gPC0gTWF0cml4KERub3JtLHNwYXJzZT1UUlVFKQpEbm9ybS5zaWduIDwtIE1hdHJpeChEbm9ybS5zaWduLHNwYXJzZT1UUlVFKQpEIDwtIGxpc3QoRCxEbm9ybSxEbm9ybS5zaWduKQpuYW1lcyhEKSA8LSBjKCJEIiwiRG5vcm0iLCJEbm9ybS5zaWduIikKICAjRCA8LSBEL3N1bShEKQogIGdjKCkKIHJldHVybihEKQp9CmBgYApSdW4gbGluZWFnZSBtZW1iZXJzaGlwIGVzdGltYXRpb24gZm9yIGVhY2ggY2VsbCBpbiB0aGUgbWF0cml4CmBgYHtyfQpsaW5lYWdlS0wgPC0gbGluZWFnZQpsaW5lYWdlS0xkb25lIDwtIEtMbGluKGxpbmVhZ2UsbGluZWFnZSwxNSxza2lwZ2VuZXMgPSBGQUxTRSxsaW1pdGNlbGxzID0gRkFMU0UsbmNlbGxzID0gMTAwLGNvcnJlY3QgPSBGQUxTRSxiYXRjaCA9IGNvbG5hbWVzKGhGKSkKI3NhdmUobGluZWFnZUtMLGZpbGU9Ii9kYXRhL3Byb2ovR0NCX0R2Qi9odW1hblB1YmxpY2F0aW9uL0ZpbmFsL2xpbmVhZ0tMZmluYWxyZWFsQ0NBMzBOTnZlbG9rZXJuZWwuUmRhdGEiKQojbG9hZCgiL2RhdGEvcHJvai9HQ0JfRHZCL2h1bWFuUHVibGljYXRpb24vRmluYWwvbGluZWFnS0xmaW5hbHJlYWxDQ0EzME5OdmVsb2tlcm5lbC5SZGF0YSIpCmxpbmVhZ2UubWVtIDwtIGxpbmVhZ2VLTGRvbmUkRG5vcm0KbGluZWFnZS5tZW0ubWF4IDwtIChhcHBseShsaW5lYWdlLm1lbSwyLG1heCkpCgpgYGAKVmlzdWFsaXplIGxpbmVhZ2UgaW5mb3JtYXRpb24KYGBge3J9CmxpYnJhcnkocGxvdGx5KQpsaWJyYXJ5KGRwbHlyKQojRGlmZmVyZW50aWF0aW9uIHNjb3JlCnBsb3RfbHkoIHggPSB+eCwgeSA9IH55LG1hcmtlciA9IGxpc3Qoc2l6ZSA9IDUpKSAlPiUgYWRkX21hcmtlcnMoY29sb3I9fmxpbmVhZ2UubWVtLm1heCxhbHBoYT0xKQoKI1Bsb3QgT0wgbGluZWFnZSBjbHVzdGVyIDY5ICwgcm93IDcwLgpFeHByZXNzaW9uX2NhcHBlZCA8LSBsaW5lYWdlLm1lbVs3MCxdXjAuMQpFeHByZXNzaW9uX2NhcHBlZCA8LSBzY2FsZShFeHByZXNzaW9uX2NhcHBlZCkKRXhwcmVzc2lvbl9jYXBwZWRbRXhwcmVzc2lvbl9jYXBwZWQgPD0gMS45Nl0gIDwtIDAKICAgIG5hbWVzKEV4cHJlc3Npb25fY2FwcGVkKSA8LSBzZXFfbGVuKGxlbmd0aChFeHByZXNzaW9uX2NhcHBlZCkpCiAgICBFeHByZXNzaW9uX2NhcHBlZCA8LSBzb3J0KEV4cHJlc3Npb25fY2FwcGVkLGRlY3JlYXNpbmcgPSBGQUxTRSkKICAgIG9yZCA8LSBhcy5pbnRlZ2VyKG5hbWVzKEV4cHJlc3Npb25fY2FwcGVkKSkKICAgIHBsb3RfbHkoIHggPSB+eFtvcmRdLCB5ID0gfnlbb3JkXSxtYXJrZXIgPSBsaXN0KHNpemUgPSA1KSkgJT4lIGFkZF9tYXJrZXJzKGNvbG9yPX5FeHByZXNzaW9uX2NhcHBlZCxhbHBoYT0xKSU+JSBsYXlvdXQoCiAgICAgIHhheGlzID0gbGlzdCggc2hvd2dyaWQgPSBGQUxTRSxzaG93YXhpcz1GQUxTRSx6ZXJvbGluZT1GQUxTRSksCiAgICAgIHlheGlzID0gbGlzdChzaG93Z3JpZCA9IEZBTFNFLHNob3dheGlzPUZBTFNFLHplcm9saW5lPUZBTFNFKSkKYGBgCgpgYGB7ciBmaWcuaGVpZ2h0PTEwLCBmaWcud2lkdGg9MTB9CmxpYnJhcnkoTWF0cml4KQplbWF0Lm5vcm0gPC0gaEZAYXNzYXlzJFJOQUBkYXRhCiNSRU1FTUJFUiBpdHMgUExVUzEgZm9yIHRoZSBjbHVzdGVycwpsbnVtIDwtIGFzLm51bWVyaWMoNzApCkV4cHJlc3Npb25fY2FwcGVkIDwtIGxpbmVhZ2UubWVtW2xudW0sXV4wLjEKRXhwcmVzc2lvbl9jYXBwZWQgPC0gc2NhbGUoRXhwcmVzc2lvbl9jYXBwZWQpCiMxLjY0NSAxMCUgMS45NiA1JSAyLjU4IDElICAKRXhwcmVzc2lvbl9jYXBwZWRbRXhwcmVzc2lvbl9jYXBwZWQgPD0gMS45Nl0gIDwtIDAKcHRsaW4gPC0gd2hpY2goRXhwcmVzc2lvbl9jYXBwZWQgPiAwKQpsZW5ndGgocHRsaW4pCgpMaW5lYWdlZ2VuZXMgPC0gcm93Lm5hbWVzKGhGQGFzc2F5cyRpbnRlZ3JhdGVkQGRhdGEpCiNPbmx5IFRGcwojTGluZWFnZWdlbmVzIDwtIExpbmVhZ2VnZW5lc1tMaW5lYWdlZ2VuZXMgJWluJSBURnNdCnN1cHByZXNzV2FybmluZ3MoY29ybGluIDwtIGFwcGx5KGFzLm1hdHJpeChlbWF0Lm5vcm1bTGluZWFnZWdlbmVzLHB0bGluXSksMSxmdW5jdGlvbih4KSBjb3IudGVzdCh4LGxpbmVhZ2UubWVtW2xudW0scHRsaW5dXjAuMSxtZXRob2Q9InNwZWFybWFuIikpKQpsaW5LTGRyaXZlcnMgPC0gYXMuZGF0YS5mcmFtZSh0KGFzLmRhdGEuZnJhbWUobGFwcGx5KGNvcmxpbix1bmxpc3QpKSkpCmxpbktMZHJpdmVycyRwLnZhbHVlIDwtIGFzLm51bWVyaWMoYXMuY2hhcmFjdGVyKGxpbktMZHJpdmVycyRwLnZhbHVlKSkKbGluS0xkcml2ZXJzJGVzdGltYXRlLnJobyA8LSBhcy5udW1lcmljKGFzLmNoYXJhY3RlcihsaW5LTGRyaXZlcnMkZXN0aW1hdGUucmhvKSkKI2xpbktMZHJpdmVycyRwLmFkanVzdCA8LSBwLmFkanVzdChsaW5LTGRyaXZlcnMkcC52YWx1ZSxtZXRob2QgPSAiQkgiKQpsZHNpZyA8LSBsaW5LTGRyaXZlcnMkcC52YWx1ZTtsZG1heGNvciA8LWxpbktMZHJpdmVycyRlc3RpbWF0ZS5yaG8KbmFtZXMobGRtYXhjb3IpIDwtIExpbmVhZ2VnZW5lcwpuYW1lcyhsZHNpZykgPC0gTGluZWFnZWdlbmVzCmxpbmVhZ2V2YWxzIDwtIGFzLmRhdGEuZnJhbWUoY2JpbmQobGRzaWcsbGRtYXhjb3IpKQpsaW5lYWdldmFscyA8LSBzdWJzZXQobGluZWFnZXZhbHMsbGluZWFnZXZhbHMkbGRzaWcgPCAwLjA1KQpsdmdlbmVzIDwtIGxpbmVhZ2V2YWxzCkxpbmVhZ2VnZW5lcyA8LSByb3cubmFtZXMobGluZWFnZXZhbHNbb3JkZXIoYWJzKGxpbmVhZ2V2YWxzJGxkbWF4Y29yKSxkZWNyZWFzaW5nID0gVFJVRSksXSkjWzE6NTAwXQoKCmxpbmNsdXN0ZXJzIDwtIGFzLmRhdGEuZnJhbWUodGFibGUoaEYkc2V1cmF0X2NsdXN0ZXJzM1twdGxpbl0pL3RhYmxlKGhGJHNldXJhdF9jbHVzdGVyczMpKQpsaW5jbHVzdGVycyA8LSBhcy5jaGFyYWN0ZXIobGluY2x1c3RlcnNbbGluY2x1c3RlcnMkRnJlcSA+MC4xLF0kVmFyMSkKY29yY2x1c3RlcnMgPC0gaEYkc2V1cmF0X2NsdXN0ZXJzMyNbcHRsaW5dCiBmb3IoaSBpbiAxOmxlbmd0aChsaW5jbHVzdGVycykpewogIGlmKGk9PTEpe2NhdCgiQ29ycmVsYXRpbmcgZ2VuZXMuLi5iaW5uaW5nIGJ5IGNsdXN0ZXJzLi4uIil9CiAgY2F0KHBhc3RlKCJCaW4gQ2x1c3RlciAiLGxpbmNsdXN0ZXJzW2ldLCIuLi4iKSkKICBpZihpIT0xKXtsaW5LTGRyaXZlcnNzaWcgPC1jYmluZChsaW5LTGRyaXZlcnNzaWcsbGluS0xkcml2ZXJzJHAudmFsdWUpO2xpbktMZHJpdmVyc2NvciA8LWNiaW5kKGxpbktMZHJpdmVyc2NvcixsaW5LTGRyaXZlcnMkZXN0aW1hdGUuY29yKX0KYmlubGluICA8LSBlbWF0Lm5vcm1bTGluZWFnZWdlbmVzLF0KYmlubGluICA8LSBiaW5saW5bLGNvcmNsdXN0ZXJzICVpbiUgbGluY2x1c3RlcnNbaV1dCmNhdChwYXN0ZShsZW5ndGgod2hpY2goY29yY2x1c3RlcnMgJWluJSBsaW5jbHVzdGVyc1tpXSkpLCJjZWxscy4uLiIpKQogIGxpbmJpbiA8LSBsaW5lYWdlLm1lbVtsbnVtLF1eMC4xCiAgbGluYmluIDwtIGxpbmJpbltjb3JjbHVzdGVycyAlaW4lIGxpbmNsdXN0ZXJzW2ldXQpzdXBwcmVzc1dhcm5pbmdzKGNvcmxpbiA8LSBhcHBseShhcy5tYXRyaXgoYmlubGluKSwxLGZ1bmN0aW9uKHgpIGNvci50ZXN0KHgsbGluYmluLG1ldGhvZD0icGVhcnNvbiIpKSkKbGluS0xkcml2ZXJzIDwtIGFzLmRhdGEuZnJhbWUodChhcy5kYXRhLmZyYW1lKGxhcHBseShjb3JsaW4sdW5saXN0KSkpKQpsaW5LTGRyaXZlcnMkcC52YWx1ZSA8LSBhcy5udW1lcmljKGFzLmNoYXJhY3RlcihsaW5LTGRyaXZlcnMkcC52YWx1ZSkpCmxpbktMZHJpdmVycyRwLnZhbHVlIDwtIHAuYWRqdXN0KGxpbktMZHJpdmVycyRwLnZhbHVlLG1ldGhvZCA9ICJCSCIpCmxpbktMZHJpdmVycyRlc3RpbWF0ZS5jb3IgPC0gYXMubnVtZXJpYyhhcy5jaGFyYWN0ZXIobGluS0xkcml2ZXJzJGVzdGltYXRlLmNvcikpCmlmKGkhPTEpe2xpbktMZHJpdmVyc3NpZyA8LWNiaW5kKGxpbktMZHJpdmVyc3NpZyxsaW5LTGRyaXZlcnMkcC52YWx1ZSl9CmlmKGk9PTEpe2xpbktMZHJpdmVyc3NpZyA8LSBsaW5LTGRyaXZlcnMkcC52YWx1ZTtsaW5LTGRyaXZlcnNjb3IgPC1saW5LTGRyaXZlcnMkZXN0aW1hdGUuY29yfQogfQpyb3cubmFtZXMobGluS0xkcml2ZXJzY29yKSA8LSBMaW5lYWdlZ2VuZXMKcm93Lm5hbWVzKGxpbktMZHJpdmVyc3NpZykgPC0gTGluZWFnZWdlbmVzCmxkbWF4Y29yIDwtIGFwcGx5KGxpbktMZHJpdmVyc2NvciwxLG1heCxuYS5ybSA9IFRSVUUpCmxkbWF4dmFyIDwtIGFwcGx5KGxpbktMZHJpdmVyc2NvciwxLHZhcixuYS5ybSA9IFRSVUUpCm5hbWVzKGxkbWF4Y29yKSA8LSBMaW5lYWdlZ2VuZXMKbmFtZXMobGRtYXh2YXIpIDwtIExpbmVhZ2VnZW5lcwpsZHNpZyA8LSBhcHBseShsaW5LTGRyaXZlcnNzaWcsMSxtaW4sbmEucm0gPSBUUlVFKQpuYW1lcyhsZHNpZykgPC0gTGluZWFnZWdlbmVzCmxpbmVhZ2V2YWxzIDwtIGFzLmRhdGEuZnJhbWUoY2JpbmQobGRzaWcsbGRtYXhjb3IsbGRtYXh2YXIpKQpsaW5lYWdldmFscyA8LSBzdWJzZXQobGluZWFnZXZhbHMsbGluZWFnZXZhbHMkbGRzaWcgPCAwLjA1KQpsdmdlbmVzIDwtIGxpbmVhZ2V2YWxzCkVDIDwtIGxpbmVhZ2VbbG51bSxwdGxpbl0KbmFtZXMoRUMpIDwtIHNlcV9sZW4obGVuZ3RoKEVDKSkKRUMgPC0gc29ydChFQyxkZWNyZWFzaW5nID0gRkFMU0UpCm9yZCA8LSBhcy5pbnRlZ2VyKG5hbWVzKEVDKSkKCmlmKG5yb3cobGluZWFnZXZhbHMpIDw9MTAwKXtwdGdlbmVzIDwtIHJvdy5uYW1lcyhsaW5lYWdldmFscyl9ZWxzZXtwdGdlbmVzIDwtIHJvdy5uYW1lcyhsaW5lYWdldmFsc1tvcmRlcihsaW5lYWdldmFscyRsZG1heGNvcixkZWNyZWFzaW5nID0gVFJVRSksXSlbMToxMDBdfQoKY3RsaW4gPC0gYXMubWF0cml4KGVtYXQubm9ybVtwdGdlbmVzLHB0bGluXSkKZGF0IDwtIGRhdGEuZnJhbWUodChjdGxpblssb3JkXSkpCiMjIHJlc3BvbnNlCnZhcnMgPC0gY29sbmFtZXMoZGF0KQojIyBjb3ZhcmlhdGUKaWQgPC0gMTpucm93KGRhdCkKbGlicmFyeShtZ2N2KQpkYXQgPC0gZGF0YS5mcmFtZSh0KGN0bGluWyxvcmRdKSkKY29sbmFtZXMoZGF0KSA8LSBnc3ViKCItIiwgIiIsIGNvbG5hbWVzKGRhdCkpCnB0Z2VuZXNudW0gPC0gY29sbmFtZXMoZGF0KQpkYXQgPC0gY2JpbmQoaWQsZGF0KQoKbmV3LmRhdHAgPC0gbWF0cml4KG5yb3c9bGVuZ3RoKHB0Z2VuZXNudW0pLG5jb2w9bGVuZ3RoKGlkKSkKbmV3LmRhdHB2YWwgPC0gbnVtZXJpYyhsZW5ndGg9bGVuZ3RoKHB0Z2VuZXNudW0pKQpmb3IoaSBpbiAxOmxlbmd0aChwdGdlbmVzbnVtKSl7CiAgZm9ybSA8LSBhcy5mb3JtdWxhKHBhc3RlMChwdGdlbmVzbnVtW2ldLCJ+IixwYXN0ZTAoInMoIiwiaWQiLCcsYnM9ImNzIixrPTEwJywiKSIsY29sbGFwc2U9IisiKSkpCiAgbSA8LSBnYW0oZm9ybSwgZGF0YT1kYXQpCiAgZm9ybSA8LSBhcy5mb3JtdWxhKHBhc3RlMChwdGdlbmVzbnVtW2ldLCJ+IixwYXN0ZTAoIjEiLGNvbGxhcHNlPSIrIikpKQogIG0wIDwtIGdhbShmb3JtLCBkYXRhPWRhdCkKICBuZXcuZGF0cFtpLF0gPC0gbSRmaXR0ZWQudmFsdWVzCn0Kcm93Lm5hbWVzKG5ldy5kYXRwKSA8LSBwdGdlbmVzCmNvbG5hbWVzKG5ldy5kYXRwKSA8LSBjb2xuYW1lcyhjdGxpblssb3JkXSkKbmV3LmRhdHBbbmV3LmRhdHA8MF0gPC0gMApyYW5nZTAxIDwtIGZ1bmN0aW9uKHgpeyh4LW1pbih4KSkvKG1heCh4KS1taW4oeCkpfQpuZXcuZGF0cCA8LSB0KGFwcGx5KG5ldy5kYXRwLDEscmFuZ2UwMSkpCm5ldy5kYXQgPC0gbmV3LmRhdHAjW2ZkciA8IDAuMDUsXQoKR0MgPC0gdW5saXN0KGFwcGx5KG5ldy5kYXQsMSxmdW5jdGlvbih4KSB3aGljaCh4ID09IG1heCh4KSlbMV0pKQpuYW1lcyhHQykgPC0gc2VxX2xlbihsZW5ndGgoR0MpKQpHQyA8LSBzb3J0KEdDLGRlY3JlYXNpbmcgPSBUUlVFKQpvcmRHIDwtIGFzLmludGVnZXIobmFtZXMoR0MpKQoKY3RsaW4gPC0gYXMubWF0cml4KGVtYXR1W3Jvdy5uYW1lcyhuZXcuZGF0KSxwdGxpbl0pCmRhdCA8LSBkYXRhLmZyYW1lKHQoY3RsaW5bLG9yZF0pKQp2YXJzIDwtIGNvbG5hbWVzKGRhdCkKaWQgPC0gMTpucm93KGRhdCkKbGlicmFyeShtZ2N2KQpkYXQgPC0gZGF0YS5mcmFtZSh0KGN0bGluWyxvcmRdKSkKY29sbmFtZXMoZGF0KSA8LSBnc3ViKCItIiwgIiIsIGNvbG5hbWVzKGRhdCkpCnB0Z2VuZXNudW0gPC0gY29sbmFtZXMoZGF0KQpkYXQgPC0gY2JpbmQoaWQsZGF0KQpuZXcuZGF0dSA8LSBtYXRyaXgobnJvdz1sZW5ndGgocHRnZW5lc251bSksbmNvbD1sZW5ndGgoaWQpKQpmb3IoaSBpbiAxOmxlbmd0aChwdGdlbmVzbnVtKSl7CiAgI3ByaW50KGkpCiAgZm9ybSA8LSBhcy5mb3JtdWxhKHBhc3RlMChwdGdlbmVzbnVtW2ldLCJ+IixwYXN0ZTAoInMoIiwiaWQiLCcsYnM9ImNzIixrPTEwJywiKSIsY29sbGFwc2U9IisiKSkpCiAgbmV3LmRhdHVbaSxdIDwtIGdhbShmb3JtLCBkYXRhPWRhdCkkZml0dGVkLnZhbHVlcwp9CnJvdy5uYW1lcyhuZXcuZGF0dSkgPC0gcm93Lm5hbWVzKG5ldy5kYXQpCmNvbG5hbWVzKG5ldy5kYXR1KSA8LSBjb2xuYW1lcyhjdGxpblssb3JkXSkKbmV3LmRhdHVbbmV3LmRhdHU8MF0gPC0gMApyYW5nZTAxIDwtIGZ1bmN0aW9uKHgpeyh4LW1pbih4KSkvKG1heCh4KS1taW4oeCkpfQpuZXcuZGF0dSA8LSB0KGFwcGx5KG5ldy5kYXR1LDEscmFuZ2UwMSkpCm5ldy5kYXRbbmV3LmRhdDwwXSA8LSAwCm5ldy5kYXR1IDwtIG5ldy5kYXRbb3JkRyxdLW5ldy5kYXR1W29yZEcsXQpmaWx0ZXIgPC0gYXBwbHkobmV3LmRhdHUsMSxhbnlOQSkKbmV3LmRhdHUgPC0gbmV3LmRhdHVbIWZpbHRlcixdCm9yZEYgPC0gb3JkR1shZmlsdGVyXQpHQyA8LSB1bmxpc3QoYXBwbHkobmV3LmRhdHUsMSxmdW5jdGlvbih4KSB3aGljaCh4ID09IG1heCh4KSlbMV0pKQpuYW1lcyhHQykgPC0gc2VxX2xlbihsZW5ndGgoR0MpKQpHQyA8LSBzb3J0KEdDLGRlY3JlYXNpbmcgPSBUUlVFKQpvcmRGIDwtIGFzLmludGVnZXIobmFtZXMoR0MpKQoKCmxpYnJhcnkoaGVhdG1hcDMpCmxpYnJhcnkocGhlYXRtYXApCmxpYnJhcnkoaHVlcykKbGlicmFyeSh2aXJpZGlzKQpzaWRlY29scyA8LSBpd2FudGh1ZShsZW5ndGgodW5pcXVlKGhGQG1ldGEuZGF0YSRzZXVyYXRfY2x1c3RlcnMzKSksMCwgMzYwLCAzNiwgMTgwLCAxMywgNzMpCnNpZGVjb2xzIDwtIHNpZGVjb2xzW2FzLmZhY3RvcihoRkBtZXRhLmRhdGEkc2V1cmF0X2NsdXN0ZXJzMyldW3B0bGluXQpuYW1lcyhzaWRlY29scykgPC0gc2VxX2xlbihsZW5ndGgoc2lkZWNvbHMpKQpzaWRlY29scyA8LSBzaWRlY29sc1tvcmRdCmhlYXRtYXAzKG5ldy5kYXRbb3JkRyxdLCBSb3d2ID0gTkEsIENvbHYgPSBOQSAsc2NhbGUgPSAibm9uZSIsc3ltbSA9IEYsIG1ldGhvZCA9ICJ3YXJkLkQyIixjb2w9dmlyaWRpcygxMDI0KSxiYWxhbmNlQ29sb3IgPUYsY2V4Um93ID0gMS4yLGNleENvbCA9IDAuNSxDb2xTaWRlQ29sb3JzPXNpZGVjb2xzLGxhYkNvbCA9IE5BLCkKaGVhdG1hcDMobmV3LmRhdHVbb3JkRixdLCBSb3d2ID0gTkEsIENvbHYgPSBOQSAsc2NhbGUgPSAibm9uZSIsc3ltbSA9IEYsIG1ldGhvZCA9ICJ3YXJkLkQyIixiYWxhbmNlQ29sb3IgPUYsY2V4Um93ID0gMS40LGNleENvbCA9IDAuNSxDb2xTaWRlQ29sb3JzPXNpZGVjb2xzLGxhYkNvbCA9IE5BKQoKc2F2ZS5pbWFnZSgiL2RhdGEvcHJvai9HQ0JfRHZCL2h1bWFuUHVibGljYXRpb24vRmluYWwvTkJwYXJ0Mi5SRGF0YSIpCmBgYA==